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