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