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