Add comments to the debug header.

This commit is contained in:
Danila Fedorin 2018-02-27 11:08:14 -08:00
parent 08513a2315
commit 127a59ba50
1 changed files with 9 additions and 0 deletions

View File

@ -4,7 +4,16 @@
#include "tree.h"
#include <stdio.h>
/**
* Prints the given tree to the given file.
* @param print the tree to print.
* @param file the file to print to.
*/
void libab_debug_fprint_tree(libab_tree* print, FILE* file);
/**
* Prints the given tree to the standard output.
* @param print the tree to print.
*/
void libab_debug_print_tree(libab_tree* print);
#endif