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