diff --git a/include/debug.h b/include/debug.h index f0bcdcd..277c526 100644 --- a/include/debug.h +++ b/include/debug.h @@ -4,7 +4,16 @@ #include "tree.h" #include +/** + * 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