ref: 8f1beff6f12d317ac2aada892c2c791b14eb7ebf 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; }