mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-28 21:54:10 +01:00
f7130468d2
[dgit import orig notmuch_0.28.2.orig.tar.gz]
10 lines
152 B
C
10 lines
152 B
C
#define _GNU_SOURCE
|
|
#include <strings.h>
|
|
|
|
int main()
|
|
{
|
|
char *found;
|
|
const char *haystack, *needle;
|
|
|
|
found = strcasestr(haystack, needle);
|
|
}
|