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