Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/o-preview-2
/
.
/
com32
/
lib
/
strchr.c
blob: cd3ec780c8f9d76b714fdcca1e82725dd8ed9919 [
file
] [
log
] [
blame
] [
edit
]
/*
* strchr.c
*/
#include
<string.h>
char
*
strchr
(
const
char
*
s
,
int
c
)
{
while
(*
s
!=
(
char
)
c
)
{
if
(!*
s
)
return
NULL
;
s
++;
}
return
(
char
*)
s
;
}