mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
234 B
11 lines
234 B
|
15 years ago
|
#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;
|
||
|
|
}
|