mirror of
https://github.com/fluencelabs/musl
synced 2025-06-26 13:12:03 +00:00
initial check-in, version 0.5.0
This commit is contained in:
13
src/string/strtok.c
Normal file
13
src/string/strtok.c
Normal file
@ -0,0 +1,13 @@
|
||||
#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;
|
||||
}
|
Reference in New Issue
Block a user