#ifndef _WORD_H_ #define _WORD_H_ #define WORDS_MAX 10000 struct word_t { unsigned long hash; char *name; unsigned long long count; struct word_t *next; }; void word_init(); struct word_t *word_get(char *name); void word_free(); extern struct word_t *words; #endif