git: 9front

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