From f29f867a18ee82d6c79900420b6a6d5f66a75f18 Mon Sep 17 00:00:00 2001 From: sumuel Date: Wed, 15 Jul 2026 06:46:24 +0100 Subject: init --- board.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 board.h (limited to 'board.h') 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_ + -- cgit v1.2.3