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