ref: 3b735b0c7ea632cc7c861cfe85b161da5cce5e36 dir: /libc/strlen.c/
unsigned int strlen(char *s) { int i = 0; while(s[i] != '\0') i++; return i; }