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