#ifndef FVM_AS_OP_H_ #define FVM_AS_OP_H_ enum op { ADD, SUB, MUL, DIV, MOD, EQ, // place holder for the end of the table OPEND }; enum op str2op(const char *str); #endif