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