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