ref: c30ed6428967a83580b73c7c51efb47b24d7c876 dir: /lib/c/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; }