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