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