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