aboutsummaryrefslogtreecommitdiffhomepage
path: root/compat/have_strcasestr.c
blob: c0fb7629d8e410f3a372c5c365c722e2a17a4ee1 (plain)
1
2
3
4
5
6
7
8
9
10
#define _GNU_SOURCE
#include <strings.h>

int main()
{
    char *found;
    const char *haystack, *needle;

    found = strcasestr(haystack, needle);
}