This repository has been archived on 2024-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
pacciani/Type.h
2014-11-23 19:04:25 +01:00

14 lines
159 B
C

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