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