iconv: add euro symbol to GBK as single byte 0x80
[musl.git] / src / string / wcspbrk.c
blob0c72c197b33b5be8a07543a30e1e250caeae4470
1 #include <wchar.h>
3 wchar_t *wcspbrk(const wchar_t *s, const wchar_t *b)
5 s += wcscspn(s, b);
6 return *s ? (wchar_t *)s : NULL;