#ifndef WORDT #define WORDT #include struct WordT { std::string word; int count; }; WordT MakeWordT(std::string inWord); void PrintWordT(WordT entry); // if the words are the same, combine int the first, otherwise nothing. void CombineWordT(WordT & first, WordT second); #endif