#ifndef TYPE_H #define TYPE_H typedef enum { TYPENAME_INT, TYPENAME_CHAR, TYPENAME_FLOAT, TYPENAME_BOOL, TYPENAME_DOUBLE } Type; #endif