Pristine Ack-5.5
[Ack-5.5.git] / util / grind / operator.h
1 /* $Id: operator.h,v 1.2 1994/06/24 11:00:35 ceriel Exp $ */
2
3 #include "ops.h"
4
5 typedef struct operator {
6         int     op_nargs;
7         int     (*op_fun)();
8 } t_operator, *p_operator;
9
10 extern t_operator operators[];
11
12 #define nargs(n)        (operators[(n)].op_nargs)