shithub: riscv

ref: 4d919ab612f61c1ef1b21d41513f264d57c010d4
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 = s;
	while(map[*(unsigned char *)s++])
		;
	return s - os - 1;
}