ref: c2aeb5978fedad5c44c26893e911d367b4771d56 dir: /sys/src/ape/lib/ap/gen/strlen.c/
#include <string.h> size_t strlen(const char *s) { return strchr(s, 0) - s; }