chiark / gitweb /
allow multiple values to be matched with KEY=="value1|value2"
[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 }