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