libabacus/include/debug.h

11 lines
208 B
C
Raw Normal View History

#ifndef LIBABACUS_DEBUG_H
#define LIBABACUS_DEBUG_H
#include "tree.h"
2018-02-26 18:14:31 -08:00
#include <stdio.h>
2018-02-26 18:14:31 -08:00
void libab_debug_fprint_tree(libab_tree* print, FILE* file);
void libab_debug_print_tree(libab_tree* print);
#endif