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