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