ack/util/ego/cs/cs_debug.h

43 lines
676 B
C
Raw Permalink Normal View History

1994-06-24 11:31:16 +00:00
/* $Id$ */
1987-03-09 19:15:41 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1984-11-26 13:43:22 +00:00
#ifdef VERBOSE
2018-02-05 21:09:30 +00:00
extern void SHOWOCCUR(occur_p ocp);
/*
1984-11-26 13:43:22 +00:00
* Shows all lines in an occurrence.
*/
#else
#define SHOWOCCUR(x)
#endif
#ifdef TRACE
2018-02-05 21:09:30 +00:00
extern void OUTAVAILS(void);
/*
1984-11-26 13:43:22 +00:00
* Prints all available expressions.
*/
2018-02-05 21:09:30 +00:00
extern void OUTENTITIES(void);
/*
1984-11-26 13:43:22 +00:00
* Prints all entities.
*/
2018-02-05 21:09:30 +00:00
extern void SHOWAVAIL(avail_p avp);
/*
1984-11-26 13:43:22 +00:00
* Shows an available expression.
*/
#else /* TRACE */
1984-11-26 13:43:22 +00:00
#define OUTAVAILS()
#define OUTENTITIES()
#define SHOWAVAIL(x)
#endif /* TRACE */