git: 9front

ref: a94a1759a4b5b0a18504bf52d21ab044edab8196
dir: /sys/src/ape/lib/ap/gen/strlen.c/

View raw version
#include <string.h>

size_t
strlen(const char *s)
{
	return strchr(s, 0) - s;
}