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