/*---- header file for function: letter_match by: Sharon Tuttle last modified: 2022-08-26 ----*/ #ifndef LETTER_MATCH_H #define LETTER_MATCH_H #include <string> using namespace std; bool letter_match(string word_of_day, string word_guess, int pos); #endif