git: 9front

ref: e82d474c67efc97e09b4a2be98ec7c5348d0764f
dir: /sys/src/ape/lib/ap/gen/strspn.c/

View raw version
#include <string.h>

#define	N	256

size_t
strspn(const char *s, const char *b)
{
	char map[N], *os;

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