git: 9front

ref: 3688c264c5c72a6a4b64c045b62ffb096551272f
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;
}