diff options
Diffstat (limited to 'board.h')
| -rw-r--r-- | board.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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_ + |