X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2Fdebug.h;h=e87809de4f6109f180f8d4144bca845ee0552f1e;hb=658c6acc5900678d8f2a4a31acb407b027c90f4c;hp=eb6c64eb9aa38a308ef8ec33e83d70ade74d4dbe;hpb=54f1c58cef6764fdd611eedc267e7491e777c09b;p=Project_algorithmic_C.git diff --git a/lib/debug.h b/lib/debug.h index eb6c64e..e87809d 100644 --- a/lib/debug.h +++ b/lib/debug.h @@ -16,6 +16,13 @@ * ===================================================================================== */ +#ifndef DEBUG_H +#define DEBUG_H + #include -void dbg_mvprintw(int base_y, int base_x, const char* fmt, va_list varglist); +#include "constants.h" + +void display_array(int base_y, int base_x, unsigned int pawn_array[board_size][board_size]); + +#endif /* DEBUG_H */