blob: 3567e0521675b776e0011dd5c4c3eb16f7a25bd7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <wchar.h>
wchar_t *wcspbrk(const wchar_t *s, const wchar_t *b)
{
s += wcscspn(s, b);
return *s ? (wchar_t *)s : NULL;
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|