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