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_