varinfo.h 383 B

1234567891011121314151617
  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$ */
  6. #define VI_NSTR 1
  7. #define VI_NINT 3
  8. typedef struct varinfo {
  9. struct varinfo *vi_next;
  10. char *vi_str[VI_NSTR];
  11. int vi_int[VI_NINT];
  12. struct varinfo *vi_vi;
  13. } varinfo;
  14. #define VI_NULL (struct varinfo *) 0