From ca8809a5e10e0f505400bceeefc0561ac534ea16 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 25 Feb 2020 17:36:27 +0100 Subject: [PATCH] Add simple board copying function --- board.c | 7 +++++++ board.h | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/board.c b/board.c index fd62e50..10ba058 100644 --- a/board.c +++ b/board.c @@ -613,3 +613,10 @@ board_refresh_complexity (struct board *board) if (board->complexity == 10) board->complexity = 0; } + + +void +board_copy (const struct board *board_from, struct board *board_to) +{ + memcpy (board_to, board_from, sizeof(struct board)); +} diff --git a/board.h b/board.h index 4e39982..9f07036 100644 --- a/board.h +++ b/board.h @@ -257,3 +257,10 @@ board_place ( */ void board_refresh_complexity (struct board *board); + + +/** + * Copy a board layout to another board + */ +void +board_copy (const struct board *board_from, struct board *board_to);