22 lines
511 B
C
22 lines
511 B
C
/*
|
|
* LaTeX output component header
|
|
*/
|
|
|
|
#ifndef LATEX
|
|
#define LATEX
|
|
|
|
#include "system.h"
|
|
|
|
void latexInit (const System sys, int argc, char **argv);
|
|
void latexDone (const System sys);
|
|
void latexTimers (const System sys);
|
|
void latexMSCStart ();
|
|
void latexMSCEnd ();
|
|
void latexLearnComment (const System sys, Termlist tl);
|
|
void latexTracePrint (const System sys);
|
|
void attackDisplayLatex (const System sys);
|
|
void latexTermPrint (Term term, Termlist hl);
|
|
void latexTermTuplePrint (Term term, Termlist hl);
|
|
|
|
#endif
|