summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/gen/strtok.c
blob: 24155782a0c2dc86d23faed675332385ad5bb562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <string.h>

#define	N	256

char*
strtok_r(char *s, const char *b, char **last)
{
	char map[N], *os;

	memset(map, 0, N);
	while(*b)
		map[*(unsigned char*)b++] = 1;
	if(s == 0)
		s = *last;
	while(map[*(unsigned char*)s++])
		;
	if(*--s == 0)
		return 0;
	os = s;
	while(map[*(unsigned char*)s] == 0)
		if(*s++ == 0) {
			*last = s-1;
			return os;
		}
	*s++ = 0;
	*last = s;
	return os;
}

char*
strtok(char *s, const char *b)
{
	static char *under_rock;

	return strtok_r(s, b, &under_rock);
}