ack/util/grind/operator.h
1994-06-24 11:31:16 +00:00

13 lines
192 B
C

/* $Id$ */
#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)