xref: /aosp_15_r20/external/musl/src/string/wcspbrk.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <wchar.h>
2 
wcspbrk(const wchar_t * s,const wchar_t * b)3 wchar_t *wcspbrk(const wchar_t *s, const wchar_t *b)
4 {
5 	s += wcscspn(s, b);
6 	return *s ? (wchar_t *)s : NULL;
7 }
8