You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
231 B
C
14 lines
231 B
C
7 years ago
|
#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_
|