summaryrefslogtreecommitdiff
path: root/wk5/pset/speller
diff options
context:
space:
mode:
Diffstat (limited to 'wk5/pset/speller')
-rw-r--r--wk5/pset/speller/dictionary.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/wk5/pset/speller/dictionary.c b/wk5/pset/speller/dictionary.c
index 527abff..d199180 100644
--- a/wk5/pset/speller/dictionary.c
+++ b/wk5/pset/speller/dictionary.c
@@ -69,7 +69,10 @@ bool load(const char *dictionary)
strcpy(ptr->word, word);
ptr->next = NULL;
int val = hash(word);
-
+ if (table(val)->next != NULL)
+ {
+
+ }
}
/*