ref: b4eb667f02c32f007290b68adc95c8fbd9a2c3cd dir: /sys/src/ape/lib/ap/gen/strnlen.c/
#include <string.h> size_t strnlen(const char *s, size_t maxlen) { size_t i; for (i = 0; i < maxlen && s[i] != '\0'; i++) ; return i; }