git: 9front

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