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