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