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