From 5fa594858ce76b43ead989baae3cdc6f0e82ebfc Mon Sep 17 00:00:00 2001 From: Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> Date: Sun, 28 Apr 2024 22:31:58 +0000 Subject: Sun, Apr 28, 2024, 3:31 PM -07:00 --- wk5/pset/speller/dictionary.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'wk5') 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) + { + + } } /* -- cgit v1.2.3