git: 9front

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