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