aboutsummaryrefslogtreecommitdiff
path: root/src/string/strtok.c
blob: 0d0f149f3fba6c477ade6a2996fde2f4e087abcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <string.h>

char *strtok(char *restrict s, const char *restrict 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;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif