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