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