// Define functions.h as header file for reference in .c files
#ifndef FUNCTIONS_H
#define FUNCTIONS_H

void PrintMenu(); // Function prototype for PrintMenu() of type void
char GetMenuInput(); // Function prototype for GetMenuInput() of type char
void ExecuteMenu(char menuInput, char userInputText[]); // Function prototype for ExecuteMenu() of type void, dependent on menuInput and userInputText
int GetChars(char userInputText[]); // Function prototype for GetChars() of type int, dependent on userInputText
int GetWords(char userInputText[]); // Function prototype for GetWords() of type int, dependent on userInputText
void FixCapitals(char userInputText[]); // Function prototype for FixCapitals() of type void, dependent on userInputText
void ReplaceExclamation(char userInputText[]); // Function prototype for ReplaceExclamation() of type void, dependent on userInputText
void ShortenSpaces(char userInputText[]); // Function prototype for ShortenSpaces() of type void, dependent on userInputText

#endif