#define WORDLENGTH 20
extern char **words;
extern int dictSize;

/*Read all words from filename. Store them in 2d array words,
  and store the word count in dictSize.
*/
  
void readWords (char *filename);
