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