xref
: /
plan9
/
sys
/
src
/
ape
/
lib
/
ap
/
gen
/
strlen.c
(revision ff8c3af2f44d95267f67219afa20ba82ff6cf7e4)
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