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