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