initial check-in, version 0.5.0
[musl] / src / string / strspn.c
1 #include <string.h>
2
3 #define BITOP(a,b,op) \
4  ((a)[(size_t)(b)/(8*sizeof *(a))] op (size_t)1<<((size_t)(b)%(8*sizeof *(a))))
5
6 size_t strspn(const char *_s, const char *_c)
7 {
8         const unsigned char *s = _s;
9         const unsigned char *c = _c;
10         const unsigned char *a = s;
11         size_t byteset[32/sizeof(size_t)] = { 0 };
12
13         if (!c[0]) return 0;
14         if (!c[1]) {
15                 for (; *s == *c; s++);
16                 return s-a;
17         }
18
19         for (; *c && BITOP(byteset, *c, |=); c++);
20         for (; *s && BITOP(byteset, *s, &); s++);
21         return s-a;
22 }