summaryrefslogtreecommitdiffstats
path: root/board.h
diff options
context:
space:
mode:
authorsumuel <samuel@yakubos.org>2026-07-15 06:46:24 +0100
committersumuel <samuel@yakubos.org>2026-07-15 06:46:24 +0100
commitf29f867a18ee82d6c79900420b6a6d5f66a75f18 (patch)
tree900a0cf9f59f2485e1eb0c190f7c16ef5082babb /board.h
init
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_
+