ack/util/grind/operator.h
1990-08-31 18:22:53 +00:00

13 lines
196 B
C

/* $Header$ */
#include "ops.h"
typedef struct operator {
int op_nargs;
int (*op_fun)();
} t_operator, *p_operator;
extern t_operator operators[];
#define nargs(n) (operators[(n)].op_nargs)