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

15 lines
172 B
C

/*
* strtok.c
*/
#include <string.h>
char *strtok(char *s, const char *delim)
{
static char *holder;
if (s)
holder = s;
return strsep(&holder, delim);
}