git: 9front

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