git: 9front

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