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