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 12void printComparator(int id, FILE *f); 13void printNode(NODE *node, FILE *f, char **invariantNamePointers); 14void printSingleNode(NODE *node, FILE *f, char **invariantNamePointers); 15 16#endif /* PRINTING_H */ 17 18 19