git: 9front

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