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