ref: 14b919faf8e69fb8c06bb397b5a87c2b9f00c3bb
dir: /sys/src/ape/lib/ap/gen/strspn.c/
#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;
}