notmuch/compat/have_strsep.c

12 lines
153 B
C
Raw Normal View History

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