diff options
author | b0ric <b0risov.alexandr@rambler.ru> | 2009-08-08 20:18:38 +0300 |
---|---|---|
committer | b0ric <b0risov.alexandr@rambler.ru> | 2009-08-08 20:18:38 +0300 |
commit | 343357ed1e7907cf4b488058053df280ae63c7bb (patch) | |
tree | 201915ed25612180af3745131be66ce19edf1a0b /word.h | |
parent | 88db5cdceabf042f5e5d5695bf984900f8396225 (diff) |
Now words are shown in alphabetical order
Diffstat (limited to 'word.h')
-rw-r--r-- | word.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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*/ |