]> git.notmuchmail.org Git - notmuch/blob - compat/have_strcasestr.c
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / compat / have_strcasestr.c
1 #define _GNU_SOURCE
2 #include <strings.h> /* strcasecmp() in POSIX */
3 #include <string.h> /* strcasecmp() in *BSD */
4
5 int
6 main ()
7 {
8     char *found;
9     const char *haystack, *needle;
10
11     found = strcasestr (haystack, needle);
12 }