chiark / gitweb /
[PATCH] update klibc to 0.194
[elogind.git] / klibc / klibc / strspn.c
1 /*
2  * strspn
3  */
4
5 #include "strxspn.h"
6
7 size_t
8 strspn(const char *s, const char *accept)
9 {
10   return __strxspn(s, accept, 0);
11 }