ack/util/grind/operator.h

13 lines
192 B
C
Raw Permalink Normal View History

1994-06-24 11:31:16 +00:00
/* $Id$ */
1990-08-31 18:22:53 +00:00
#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)