X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2Fdebug.h;h=71f88eda9d1ee87b50572c92d261e2d83bc9b40b;hb=5ec791f6f2aef3f10c615eb4a336fc6282ebb8d9;hp=8d4d3b9d945911b4aefcf7d8e32f010f6dfcbbfa;hpb=a80646b74eca11c71696dedeb674870437c5bb6f;p=Project_algorithmic_C.git diff --git a/lib/debug.h b/lib/debug.h index 8d4d3b9..71f88ed 100644 --- a/lib/debug.h +++ b/lib/debug.h @@ -16,6 +16,19 @@ * ===================================================================================== */ +#ifndef DEBUG_H +#define DEBUG_H + #include +#include "constants.h" + +#if DEBUG +#define dbg_mvprintw(...) mvprintw(__VA_ARGS__) +#else +#define dbg_mvprintw(...) { } +#endif /* DEBUG */ + void display_array(int base_y, int base_x, unsigned int pawn_array[board_size][board_size]); + +#endif /* DEBUG_H */