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