git: 9front

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