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: 02632a6a31accc1b328cb8ca03641f8f360b83cd (
plain
)
1
2
3
4
5
6
7
#include
<string.h>
size_t
strlen
(
const
char
*
s
)
{
return
strchr
(
s
,
0
)
-
s
;
}