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