I have this code
int _strlen(char* s) { int a; for(int i = 0; s[i] != \'\\0\'; i++) { a++; } return a; }