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