notmuch/compat/have_strcasestr.c

11 lines
152 B
C
Raw Normal View History

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