git: 9front

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