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