1 2 3 4 5 6 7 8 9 10 11 12
#ifndef AMALGAM_BINOP_TYPE_H #define AMALGAM_BINOP_TYPE_H typedef enum { BINOP_ADD, BINOP_SUB, BINOP_MUL, BINOP_DIV, BINOP_DOT } BinopType; #endif