blob: dcd77e0e5387bc180de01531770fe9bee81320e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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
|