aboutsummaryrefslogtreecommitdiffstats
path: root/ops.h
blob: 8296cbe0b25bb1591701f5b07713abd1a954afa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef OPS_H_
#define OPS_H_

#include "variable.h"

#define OPS_COUNT 18
#define OP_MAGIC  0xCAFE3900

typedef int (*opfunc_t)(variable *, variable *, variable *);

extern variable opvars[];
extern const char *opnames[];

#endif // OPS_H_