I need to take in a pointer to list of misspelled words and a
pointer to the dictionary. the program must loop through the misspelled words, giving the user the option to add the misspelled word to the dictionary. If the user chooses to add the misspelled word to the dictionary, it is inserted into
dictionary in alphabetical order. First, the function
determines what space the word should be in, then puts it
there. It may be helpful to create an “insertNode” function
that puts a word between 2 other nodes*/
void optionToAdd(WORD * outWords, WORD * dictionary)