blob: 87e0f7ab72b6b5609d2062d875444d384a1301ff [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;
}