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