int digitalRead(uint8_t pin);
void digitalWrite(uint8_t pin, uint8_t val);
You can leave the variabele names out as done in Arduino.h. I prefer not to do so as the above makes straight away clear what the arguments are supposed to indicate while in the below does not (you don't know based on that if the first arguments of digitalWrite is the value or the pin)
void digitalWrite(uint8_t, uint8_t);
int digitalRead(uint8_t);
Spanish_Good:
Declare a function prototype to compareInputWithMasterKey. This function will take an integer input, keyNum, and provide an integer output.