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