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