git: 9front

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