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