git: 9front

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