summaryrefslogtreecommitdiffstats
path: root/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'board.h')
-rw-r--r--board.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/board.h b/board.h
new file mode 100644
index 0000000..74529db
--- /dev/null
+++ b/board.h
@@ -0,0 +1,9 @@
+#ifndef BOARD_H_ /* Include guard */
+#define BOARD_H_
+
+extern char board[8][8];
+
+void PrintBoard(char board[8][8]); /* declare the function */
+
+#endif // BOARD_H_
+