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