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