git: 9front

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