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