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
/
libc
/
port
/
strlen.c
blob: 9a3c372a5ee30cbc0ee56f6c6bdd7fb5e58f858c (
plain
)
1
2
3
4
5
6
7
8
9
#include
<u.h>
#include
<libc.h>
long
strlen
(
char
*
s
)
{
return
strchr
(
s
,
0
)
-
s
;
}