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