notmuch/compat/have_strcasestr.c
uncrustify 8099050c71 compat: run uncrustify
This is the result of running

     $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h

in the compat directory
2019-06-14 07:41:27 -03:00

11 lines
154 B
C

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