]> git.notmuchmail.org Git - notmuch/blob - compat/have_strcasestr.c
emacs: Move the blank line from the bottom of the headers to the top of the body.
[notmuch] / compat / have_strcasestr.c
1 #define _GNU_SOURCE
2 #include <strings.h>
3
4 int main()
5 {
6     char *found;
7     const char *haystack, *needle;
8
9     found = strcasestr(haystack, needle);
10 }