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