blob: ec88670447d8ec713c8edb6983ac9f494956c9b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
};
typedef enum op Op;
Op str2op(const char *str);
#endif
|