#ifndef ITYPES
#define ITYPES

typedef struct assign *assign_ptr;
struct assign {
  char *word;
  char *value;
  assign_ptr next;
};

#endif
