#include <stdio.h>

#ifndef WORDDIR
#define WORDDIR 	"/site/gameserver/lib/words"
#endif

#define INPUT_TMPLT 	"%s/%02dletwords"
#define HASH_TMPLT  	"%s/%02dletwords.hash"
#define WORD_TMPLT 	"%s/%02dletwords.text"
#define MAXTABLESIZE 65536
#define MIN_LETTERS 4
#define MAX_LETTERS 25

typedef struct hash_struct {
     short int *indices;
     short int size;
     FILE *text_file;
} Hash_Struct;

extern char *worddir;
