musl/src/string/strtok.c

14 lines
230 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <string.h>
char *strtok(char *s, const char *sep)
{
static char *p;
if (!s && !(s = p)) return NULL;
s += strspn(s, sep);
if (!*s) return p = 0;
p = s + strcspn(s, sep);
if (*p) *p++ = 0;
else p = 0;
return s;
}