mirror of
https://github.com/fluencelabs/musl
synced 2025-06-08 20:41:35 +00:00
8 lines
132 B
C
8 lines
132 B
C
#include <wchar.h>
|
|
|
|
wchar_t *wcspbrk(const wchar_t *s, const wchar_t *b)
|
|
{
|
|
s += wcscspn(s, b);
|
|
return *s ? (wchar_t *)s : NULL;
|
|
}
|