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