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