summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/gen/strlen.c
blob: e339cb16b3f23397e3ec9f74df2ce27d91209325 (plain)
1
2
3
4
5
6
7
8
#include <string.h>

size_t
strlen(const char *s)
{

	return strchr(s, 0) - s;
}