Add simple board copying function

This commit is contained in:
Gabriel Tofvesson 2020-02-25 17:36:27 +01:00
parent 1abbff5a37
commit ca8809a5e1
2 changed files with 14 additions and 0 deletions

View File

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

View File

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