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

#include "parser.h"

#define IOPS_COUNT 16

typedef void (*operation_t)(variable *, variable *, variable *);

extern char *iops[IOPS_COUNT];
extern operation_t iopfuncs[IOPS_COUNT];

#endif // OPS_H_