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