git: 9front

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