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