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