allwinner_a64/android/external/syslinux/com32/lib/strsep.c
2018-08-08 16:14:42 +08:00

21 lines
243 B
C

/*
* strsep.c
*/
#include <string.h>
char *strsep(char **stringp, const char *delim)
{
char *s = *stringp;
char *e;
if (!s)
return NULL;
e = strpbrk(s, delim);
if (e)
*e++ = '\0';
*stringp = e;
return s;
}