notmuch/compat/have_strcasestr.c

12 lines
154 B
C
Raw Normal View History

#define _GNU_SOURCE
#include <strings.h>
int
main ()
{
char *found;
const char *haystack, *needle;
found = strcasestr (haystack, needle);
}