chiark / gitweb /
87d644551ebcbc98098b3c19435d3beb2d0dd122
[elogind.git] / klibc / klibc / strcspn.c
1 /*
2  * strcspn
3  */
4
5 #include "strxspn.h"
6
7 size_t
8 strcspn(const char *s, const char *reject)
9 {
10   return __strxspn(s, reject, 1);
11 }