blob: dc8e999059f12dbfdff45f569ade0ac8d63106ba [file] [log] [blame]
#include <wchar.h>
wchar_t* wcspbrk(const wchar_t* s, const wchar_t* b) {
s += wcscspn(s, b);
return *s ? (wchar_t*)s : NULL;
}