repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update sys/socket.h to linux v4.6
[musl.git]
/
src
/
string
/
wcspbrk.c
blob
0c72c197b33b5be8a07543a30e1e250caeae4470
1
#include <wchar.h>
2
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
}