summaryrefslogtreecommitdiff
path: root/word.h
diff options
context:
space:
mode:
authorb0ric <b0risov.alexandr@rambler.ru>2009-08-08 20:18:38 +0300
committerb0ric <b0risov.alexandr@rambler.ru>2009-08-08 20:18:38 +0300
commit343357ed1e7907cf4b488058053df280ae63c7bb (patch)
tree201915ed25612180af3745131be66ce19edf1a0b /word.h
parent88db5cdceabf042f5e5d5695bf984900f8396225 (diff)
Now words are shown in alphabetical order
Diffstat (limited to 'word.h')
-rw-r--r--word.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/word.h b/word.h
index c5f9567..719f0e3 100644
--- a/word.h
+++ b/word.h
@@ -31,11 +31,13 @@ struct word {
};
typedef struct word Word;
-Word *words;
+extern Word *words;
int to_list(char *);
void print_words(Word *);
Word *add_word_record(Word *, char *);
+unsigned int get_words_count(const Word *);
void free_words(Word *);
+char **get_sorted();
#endif /*WORD_H*/