git: 9front

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