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