]> git.notmuchmail.org Git - notmuch/blob - compat/have_strcasestr.c
build: move {C,CXX}FLAGS to the end of FINAL_{C,CXX}FLAGS
[notmuch] / compat / have_strcasestr.c
1 #define _GNU_SOURCE
2 #include <strings.h>
3
4 int
5 main ()
6 {
7     char *found;
8     const char *haystack, *needle;
9
10     found = strcasestr (haystack, needle);
11 }