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