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