xref: /plan9-contrib/sys/src/ape/lib/ap/gen/strlen.c (revision 9b943567965ba040fd275927fbe088656eb8ce4f)
1 #include <string.h>
2 
3 size_t
4 strlen(const char *s)
5 {
6 
7 	return strchr(s, 0) - s;
8 }
9