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