scyther/src/output.h

17 lines
515 B
C
Raw Normal View History

2004-04-23 11:58:43 +01:00
#ifndef OUTPUT
#define OUTPUT
#include "system.h"
2004-04-23 11:58:43 +01:00
void tracePrint (const System sys);
void attackDisplay (const System sys);
void graphInit (const System sys);
void graphDone (const System sys);
void graphNode (const System sys);
void graphNodePath (const System sys, const int length, const char *nodepar);
void graphEdgePath (const System sys, const int length, const char *edgepar);
void graphPath (const System sys, int length);
void graphScenario (const System sys, const int run, const Roledef rd);
2004-04-23 11:58:43 +01:00
#endif