1#include <wchar.h>
2
3wchar_t* wcspbrk(const wchar_t* s, const wchar_t* b) {
4    s += wcscspn(s, b);
5    return *s ? (wchar_t*)s : NULL;
6}
7