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