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