diff options
| author | sumuel <samuel@yakubos.org> | 2026-07-15 06:46:24 +0100 |
|---|---|---|
| committer | sumuel <samuel@yakubos.org> | 2026-07-15 06:46:24 +0100 |
| commit | f29f867a18ee82d6c79900420b6a6d5f66a75f18 (patch) | |
| tree | 900a0cf9f59f2485e1eb0c190f7c16ef5082babb /board.h | |
init
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_ + |