char shift(char c, string keyWord){ // Shifts the order of the letters
int result = (c-'A' + keyWord);
if (result >= 26) result = result - 26;
if (result < 0) result = result + 26;
return result + 'A';
}
string keyWord = atoi(argv[2]);
bool encrypt;
string option(argv[1]);
string line;
string encodedLine;
if (option == "-e"){
encrypt = true;
} else {
encrypt = false;
}
the second part of the code is where i get the second error