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