blob: eeec6a165993cd1d52089a913b989811a1b1c6c8 [file] [log] [blame]
#include <wchar.h>
size_t wcsspn(const wchar_t* s, const wchar_t* c) {
const wchar_t* a;
for (a = s; *s && wcschr(c, *s); s++)
;
return s - a;
}