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