ref: d7171eb5761cad852580cf0b9d352725a9cb1015 dir: /src/libc/string/strnlen.c/
#include <string.h> #undef strnlen size_t strnlen(const char *s, size_t maxlen) { size_t n; for (n = 0; n < maxlen && *s++; ++n) ; return n; }