Initial revision

This commit is contained in:
bal
1984-11-26 13:43:22 +00:00
parent 5481dd47a9
commit 7b798175ad
36 changed files with 4585 additions and 0 deletions

33
util/ego/cs/cs_debug.h Normal file
View File

@@ -0,0 +1,33 @@
#ifdef VERBOSE
extern SHOWOCCUR(); /* (occur_p ocp)
* Shows all lines in an occurrence.
*/
#else
#define SHOWOCCUR(x)
#endif
#ifdef TRACE
extern OUTAVAILS(); /* ()
* Prints all available expressions.
*/
extern OUTENTITIES(); /* ()
* Prints all entities.
*/
extern SHOWAVAIL(); /* (avail_p avp)
* Shows an available expression.
*/
#else TRACE
#define OUTAVAILS()
#define OUTENTITIES()
#define SHOWAVAIL(x)
#endif TRACE