From f590189d63bac985c2738c63fc79a03f6ced1126 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Sun, 25 Jul 2021 23:49:20 -0400 Subject: Made the print function take a const for the board parameter. We wont need to mutate the board in the print function. --- include/othello.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/othello.h b/include/othello.h index aed7302..c7ed718 100644 --- a/include/othello.h +++ b/include/othello.h @@ -16,4 +16,4 @@ bool is_valid_move(const player_color board[8][8], bool has_valid_moves(const player_color board[8][8], const player_color current_player); char game_loop(player_color board[8][8]); -void print_board(player_color board[8][8]); +void print_board(const player_color board[8][8]); -- cgit v1.2.3