diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-04-28 21:56:15 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-04-28 21:56:15 +0000 |
commit | 471a02f9042e8e8e43449b516dce9f50e8ce8140 (patch) | |
tree | a688b0020e0e1d36cc4c1b875c6af94f8cc43208 /wk5/pset/speller | |
parent | f8c138fd5838b647673cb63b98c4223cc694a763 (diff) |
Sun, Apr 28, 2024, 2:56 PM -07:00
Diffstat (limited to 'wk5/pset/speller')
-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); } |