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