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