ref: 9332f34cf7bae72b9ccaa290cae5a1eec3f34f3d 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; }