git: 9front

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