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