Pristine Ack-5.5
[Ack-5.5.git] / util / ncgg / varinfo.h
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 /* $Id: varinfo.h,v 0.3 1994/06/24 10:38:32 ceriel Exp $ */
6
7 #define VI_NSTR 1
8 #define VI_NINT 3
9
10 typedef struct varinfo {
11         struct varinfo *vi_next;
12         char *vi_str[VI_NSTR];
13         int vi_int[VI_NINT];
14         struct varinfo *vi_vi;
15 } varinfo;
16
17 #define VI_NULL (struct varinfo *) 0