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