summaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2019-03-10 21:22:23 +1300
committerDavid Phillips <david@sighup.nz>2019-03-10 21:45:55 +1300
commitb47a999dee9ee7a0d2e7b0c4d1cf25282abfa71a (patch)
tree90a282f7f4c3c3766648df42061c3062ef9e7b4b /debug.h
parentb434d87ee4deb9cc07af1be79d90b874fa139321 (diff)
downloadsudoku-b47a999dee9ee7a0d2e7b0c4d1cf25282abfa71a.tar.xz
Clean-up
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/debug.h b/debug.h
new file mode 100644
index 0000000..df0fcba
--- /dev/null
+++ b/debug.h
@@ -0,0 +1,15 @@
+#ifndef SUDOKU_DEBUG_H
+#define SUDOKU_DEBUG_H
+
+#include <stdio.h>
+
+#define NAME_CELL(x,y) ("ABCDEFGHI"[(x)]), ("123456789"[(y)])
+
+//#define DEBUG
+#ifdef DEBUG
+# define DEBUG_LOG(args...) printf(args)
+#else
+# define DEBUG_LOG(...)
+#endif
+
+#endif /* SUDOKU_DEBUG_H */