git: 9front

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