cs_debug.h 648 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. #ifdef VERBOSE
  7. extern SHOWOCCUR(); /* (occur_p ocp)
  8. * Shows all lines in an occurrence.
  9. */
  10. #else
  11. #define SHOWOCCUR(x)
  12. #endif
  13. #ifdef TRACE
  14. extern OUTAVAILS(); /* ()
  15. * Prints all available expressions.
  16. */
  17. extern OUTENTITIES(); /* ()
  18. * Prints all entities.
  19. */
  20. extern SHOWAVAIL(); /* (avail_p avp)
  21. * Shows an available expression.
  22. */
  23. #else /* TRACE */
  24. #define OUTAVAILS()
  25. #define OUTENTITIES()
  26. #define SHOWAVAIL(x)
  27. #endif /* TRACE */