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