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