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