Implement some basic debug printing function.
[Project_algorithmic_C.git] / lib / debug.h
index 8d4d3b9d945911b4aefcf7d8e32f010f6dfcbbfa..e87809de4f6109f180f8d4144bca845ee0552f1e 100644 (file)
  * =====================================================================================
  */
 
+#ifndef DEBUG_H
+#define DEBUG_H
+
 #include <ncurses.h>
 
+#include "constants.h"
 void display_array(int base_y, int base_x, unsigned int pawn_array[board_size][board_size]);
+
+#endif /* DEBUG_H */