/* header file supplied by Sarah Rees */

extern char *malloc_value;
extern char * calloc();
typedef int gen; /*name for generator*/
#define valloc(A,N) (A *)malloc((unsigned)(sizeof(A)*(N)))
#define vzalloc(A,N) (A *)calloc((unsigned)N,(unsigned)sizeof(A))
#define inv(g)          inv_of[(g)]
extern char pq_word_delget_first(); 
extern char pq_word_del_last(); 
extern char pq_word_next();
extern char pq_read_next_gen();
extern char pq_read_next_word();
extern char pq_word_get_last();
extern char pq_find_keyword();
extern char pq_read_next_string();
extern char pq_read_next_int();
extern char pq_word_eq();

typedef struct {
   gen *g;
   int first;	       /* the position of the first entry in the word */
   int last;	       /* position of last entry; if word is empty, 
                          define this to be position BEFORE first entry */
   int space;	       /* this should be a power of 2 */
} word;

typedef struct word_link {
   word * wp;
   struct word_link * next;
} word_link;

word_link * pq_word_link_create();

typedef struct word_traverser {
   word * wp;
   int posn;
} word_traverser;

#define word_length(wp)         (((wp)->last) + 1 - ((wp)->first))

extern int num_gens;
extern int paired_gens;
extern gen * inv_of;
extern int * pairnumber;
extern word * user_gen_name;
extern int gen_array_size;
