diff options
Diffstat (limited to 'word.h')
-rw-r--r-- | word.h | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +#ifndef _WORD_H_ +#define _WORD_H_ + +#define WORDS_MAX 10000 + +struct word_t { + unsigned long hash; + char *name; + unsigned long count; + struct word_t *next; +}; + +void word_init(); +struct word_t *word_get(char *name); +void word_free(); + +#endif |