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