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