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