git: 9front

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