chiark / gitweb /
[PATCH] klibc: update to version 0.196
[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 }