scyther/src/binding.h

17 lines
340 B
C
Raw Normal View History

2004-08-15 12:55:22 +01:00
#ifndef BINDINGS
#define BINDINGS
2004-08-17 12:03:18 +01:00
#include "term.h"
#include "system.h"
2004-08-15 12:55:22 +01:00
void bindingInit (const System mysys);
void bindingDone ();
int node_count ();
int node_number (int run, int ev);
2004-08-17 12:03:18 +01:00
int binding_add (int run_from, int ev_from, int run_to, int ev_to, Term term);
2004-08-15 12:55:22 +01:00
void binding_remove_last ();
int binding_print (void *bindany);
2004-08-15 12:55:22 +01:00
#endif