ref: 08a32f26c08c322c5549b94c05032d2e87f1df3c dir: /src/libc/string/strlen.c/
#include <string.h> #undef strlen size_t strlen(const char *s) { const char *t; for (t = s; *t; ++t) ; return t - s; }