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