//------------------------------------------------------------------- // File :score.h // Author :Alicia Thorsen // Course :CS1129 // // Prototypes for functions which handle scoring. //------------------------------------------------------------------- #ifndef SCORE_H #define SCORE_H #include "board.h" #include using namespace std; //Score all words entered by user void scoreWords(char [][SIZE], string [], int, string [], int, bool []); //Returns true if the given word has aready been seen bool duplicate(string, string [], int); //Returns the score based on length for a given word int calcScore(string); #endif