xref
: /
plan9
/
sys
/
src
/
ape
/
lib
/
ap
/
gen
/
strlen.c
(revision 58da3067adcdccaaa043d0bfde28ba83b7ced07d)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
string.h
>
2
3
size_t
4
strlen
(
const
char
*
s
)
5
{
6
7
return
strchr
(
s
, 0) -
s
;
8
}
9