summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2022-01-21 19:51:27 -0500
committerRobby Zambito <contact@robbyzambito.me>2022-01-21 19:51:27 -0500
commit560016b243bc52f721153272a3809f6271215a25 (patch)
tree9d6b2873e30391917958d870dc84a0c99967ac45 /include
parente75be9264d86d2059ce6591295af246da2198301 (diff)
Expose print-board to allow Scheme to print the board normally
Diffstat (limited to 'include')
-rw-r--r--include/othello_board.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/othello_board.h b/include/othello_board.h
index 8852ad0..99ad839 100644
--- a/include/othello_board.h
+++ b/include/othello_board.h
@@ -33,6 +33,7 @@ void free_board(enum player_color **board);
// Prints the current state of the board, including coordinates in the margins.
void print_board(enum player_color **board);
+void scm_print_board(SCM board);
// Returns the current board.
enum player_color **get_board(void);