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