repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
setjmp.S: use C-style comments
[syslinux.git]
/
com32
/
lib
/
strchr.c
blob
192f83600c0220460cca0774095087a4226cb377
1
/*
2
* strchr.c
3
*/
4
5
#include <string.h>
6
7
char
*
strchr
(
const char
*
s
,
int
c
)
8
{
9
while
( *
s
!= (
char
)
c
) {
10
if
( ! *
s
)
11
return
NULL
;
12
s
++;
13
}
14
15
return
(
char
*)
s
;
16
}