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