diff options
Diffstat (limited to 'wk5')
-rw-r--r-- | wk5/pset/speller/dictionary.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/wk5/pset/speller/dictionary.c b/wk5/pset/speller/dictionary.c index acaa300..b89d246 100644 --- a/wk5/pset/speller/dictionary.c +++ b/wk5/pset/speller/dictionary.c @@ -52,21 +52,22 @@ bool load(const char *dictionary) //read each word in dictionary char word[LENGTH + 1]; + // use fscanf(file, "%s", word) to grab words + // check for ended file while(fscanf(source, "%s", word) != "E0F") { + // create new node char *ptr = malloc(sizefo(node)); if (ptr == NULL) { fclose(source); return false; } - + strcpy() } /* - use fscanf(file, "%s", word) to grab words - check for ended file - create new node + use malloc check if return is NULL copy word from fscanf into node using strcpy |