shithub: npe

ref: 086f757bc0f6c51c01e6300ce0370d774e6f9864
dir: /libnpe/strtok.c/

View raw version
#include <string.h>

#define	N	256

char*
strtok_r(char *s, 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;
}