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