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