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);