git: 9front

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