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