var.c 660 B

123456789101112131415161718192021222324252627282930
  1. #ifndef NORCSID
  2. static char rcsid[] = "$Id$";
  3. #endif
  4. #include "param.h"
  5. #include "tables.h"
  6. #include "types.h"
  7. #include <cgg_cg.h>
  8. #include "data.h"
  9. #include "result.h"
  10. /*
  11. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  12. * See the copyright notice in the ACK home directory, in the file "Copyright".
  13. *
  14. * Author: Hans van Staveren
  15. */
  16. int stackheight = 0;
  17. token_t fakestack[MAXFSTACK];
  18. int nallreg = 0;
  19. int allreg[MAXALLREG];
  20. token_p curtoken = (token_p) 0;
  21. result_t dollar[LONGESTPATTERN];
  22. int nemlines =0;
  23. struct emline emlines[MAXEMLINES];
  24. struct emline *emp=emlines;
  25. struct emline *saveemp;
  26. int tokpatlen;
  27. rl_p curreglist;