git: 9front

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