notmuch/compat/have_strsep.c
uncrustify 8099050c71 compat: run uncrustify
This is the result of running

     $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h

in the compat directory
2019-06-14 07:41:27 -03:00

12 lines
155 B
C

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