Pristine Ack-5.5
[Ack-5.5.git] / util / ego / cs / cs_debug.h
1 /* $Id: cs_debug.h,v 1.5 1994/06/24 10:22:06 ceriel Exp $ */
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
8 extern SHOWOCCUR();     /* (occur_p ocp)
9                          * Shows all lines in an occurrence.
10                          */
11
12 #else
13
14 #define SHOWOCCUR(x)
15
16 #endif
17
18 #ifdef TRACE
19
20 extern OUTAVAILS();     /* ()
21                          * Prints all available expressions.
22                          */
23
24 extern OUTENTITIES();   /* ()
25                          * Prints all entities.
26                          */
27
28 extern SHOWAVAIL();     /* (avail_p avp)
29                          * Shows an available expression.
30                          */
31
32 #else /* TRACE */
33
34 #define OUTAVAILS()
35 #define OUTENTITIES()
36 #define SHOWAVAIL(x)
37
38 #endif /* TRACE */