ref: ea7be436724a770dc5e3f43ac32dd7393c0b0057 dir: /lib/c/strlen.c/
#include <string.h> #undef strlen size_t strlen(const char *s) { const char *t; for (t = s; *t; ++t) ; return t - s; }