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