index
:
plan9front.git
cosa
front
gicv2
gicvn
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
src
/
ape
/
lib
/
ap
/
gen
/
strlen.c
blob: e339cb16b3f23397e3ec9f74df2ce27d91209325 (
plain
)
1
2
3
4
5
6
7
8
#include
<string.h>
size_t
strlen
(
const
char
*
s
)
{
return
strchr
(
s
,
0
)
-
s
;
}