Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
2188 views
1
/*
2
* Main developer: Nico Van Cleemput
3
* In collaboration with: Craig Larson
4
*
5
* Copyright (C) 2013 Ghent University.
6
* Licensed under the GNU GPL, read the file LICENSE.txt for details.
7
*/
8
9
#ifndef PRINTING_H
10
#define PRINTING_H
11
12
void printComparator(int id, FILE *f);
13
void printNode(NODE *node, FILE *f, char **invariantNamePointers);
14
void printSingleNode(NODE *node, FILE *f, char **invariantNamePointers);
15
16
#endif /* PRINTING_H */
17
18
19