diff options
Diffstat (limited to 'libc-top-half/musl/src/string/wcscspn.c')
-rw-r--r-- | libc-top-half/musl/src/string/wcscspn.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/string/wcscspn.c b/libc-top-half/musl/src/string/wcscspn.c new file mode 100644 index 0000000..c4e5272 --- /dev/null +++ b/libc-top-half/musl/src/string/wcscspn.c @@ -0,0 +1,10 @@ +#include <wchar.h> + +size_t wcscspn(const wchar_t *s, const wchar_t *c) +{ + const wchar_t *a; + if (!c[0]) return wcslen(s); + if (!c[1]) return (s=wcschr(a=s, *c)) ? s-a : wcslen(a); + for (a=s; *s && !wcschr(c, *s); s++); + return s-a; +} |