git: 9front

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