blob: 1ba221cb4e6a3266e5f0899da179303c113e5a14 [file] [log] [blame]
#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;
}