From 560016b243bc52f721153272a3809f6271215a25 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Fri, 21 Jan 2022 19:51:27 -0500 Subject: Expose print-board to allow Scheme to print the board normally --- include/othello_board.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') 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); -- cgit v1.2.3