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