#ifndef OPERATION_H #define OPERATION_H typedef enum Operation { OP_NOTHING, OP_PUSH_INT, OP_PUSH_NULL, OP_ADD, OP_MUL, OP_PRINT } Operation; #endif