#ifndef compileH
#define compileH


typedef struct bool_type_struct
{
  char *var_name;

  int var;
} *bool_type;

typedef struct int_type_struct
{
  char *var_name;

  int low_var,hi_var;
} *int_type;

extern bool_type alloc_bool();
extern int_type alloc_int();

#endif

