From 127a59ba50cde057000acd29327b45d0e77ad75d Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Tue, 27 Feb 2018 11:08:14 -0800 Subject: [PATCH] Add comments to the debug header. --- include/debug.h | 9 +++++++++ 1 file changed, 9 insertions(+) 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