repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 3.35.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
strlen.c
blob
847c16eb680ba7a19935f2f742f2cef09137fab4
1
/*
2
* strlen()
3
*/
4
5
#include <string.h>
6
7
size_t
strlen
(
const char
*
s
)
8
{
9
const char
*
ss
=
s
;
10
while
( *
ss
)
11
ss
++;
12
return
ss
-
s
;
13
}