Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
string
/
wcspbrk.c
blob: 0c72c197b33b5be8a07543a30e1e250caeae4470 [
file
] [
log
] [
blame
]
#include
<wchar.h>
wchar_t
*
wcspbrk
(
const
wchar_t
*
s
,
const
wchar_t
*
b
)
{
s
+=
wcscspn
(
s
,
b
);
return
*
s
?
(
wchar_t
*)
s
:
NULL
;
}