diff options
Diffstat (limited to 'wk5/pset/speller/dictionary.c')
-rw-r--r-- | wk5/pset/speller/dictionary.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/wk5/pset/speller/dictionary.c b/wk5/pset/speller/dictionary.c index 0a3549d..16d3547 100644 --- a/wk5/pset/speller/dictionary.c +++ b/wk5/pset/speller/dictionary.c @@ -54,6 +54,11 @@ bool load(const char *dictionary) char c; while(fscanf(source, "%s", word) != ) + /* + use fscanf(file, "%s", word) to grab words + + */ + // Close the dictionary file fclose(source); } |