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