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