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