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