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