Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
92f8396b0c8e4f146563b87f46137484cfb36e31
/
.
/
src
/
string
/
strchrnul.c
blob: 5e0c1a1a4487667f85525a61a59270d44de32ff7 [
file
] [
log
] [
blame
]
#include
<string.h>
char
*
strchrnul
(
const
char
*
s
,
int
c
)
{
char
*
p
=
strchr
(
s
,
c
);
return
p
?
p
:
(
char
*)
s
+
strlen
(
s
);
}