Add function to print to file.

This commit is contained in:
2018-02-26 18:14:31 -08:00
parent 2823b0b66b
commit 08513a2315
2 changed files with 17 additions and 11 deletions

View File

@@ -2,7 +2,9 @@
#define LIBABACUS_DEBUG_H
#include "tree.h"
#include <stdio.h>
void libab_debug_fprint_tree(libab_tree* print, FILE* file);
void libab_debug_print_tree(libab_tree* print);
#endif