//------------------------------------------------------------------- // File :getWords.h // Author :Alicia Thorsen // Course :CS1129 // // Prototypes for functions which handle getting the words from the user. //------------------------------------------------------------------- #ifndef GET_WORDS_H #define GET_WORDS_H #include "board.h" #include using namespace std; string * getWords(char [][SIZE], int &); void showTimeLeft(int); #endif