summaryrefslogtreecommitdiff
path: root/src/sysdeps/trystrcasestr.c
blob: f362202cf1bb5a208d56fc74f002994247b9e870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ISC license. */

#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE

#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#ifndef _BSD_SOURCE
#define _BSD_SOURCE
#endif
#ifndef _NETBSD_SOURCE
#define _NETBSD_SOURCE
#endif

#include <string.h>

int main (void)
{
  return !strcasestr("foobar", "bar") ;
}