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