chiark / gitweb /
10b1dfc5fab58bb82bb3010c30266436029529fd
[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 }