notmuch/compat/have_strsep.c
David Bremner f7130468d2 Import notmuch_0.28.2.orig.tar.gz
[dgit import orig notmuch_0.28.2.orig.tar.gz]
2019-02-17 07:30:33 -04:00

11 lines
153 B
C

#define _GNU_SOURCE
#include <string.h>
int main()
{
char *found;
char **stringp;
const char *delim;
found = strsep(stringp, delim);
}