Please use exactly the prototypes I specify for your functions.
As usual, put your function prototypes before main and your non-main function definitions after main
Write a main function that calls your other functions. You decide the details of your main function, I'm primarily interested in your string function definitions.
I was sick on this part of my Professor's Lecture I have no idea where to start?
// returns whether the string is a palindrome, meaning that it
// is the same frontwards and backwards.
// palindrome( "1234 racecar 4321" ) return true
// palindrome( "Eve" ) returns false (case sensitive)
bool palindrome( const string & s );