Add simple board copying function
This commit is contained in:
parent
1abbff5a37
commit
ca8809a5e1
7
board.c
7
board.c
@ -613,3 +613,10 @@ board_refresh_complexity (struct board *board)
|
|||||||
if (board->complexity == 10)
|
if (board->complexity == 10)
|
||||||
board->complexity = 0;
|
board->complexity = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
board_copy (const struct board *board_from, struct board *board_to)
|
||||||
|
{
|
||||||
|
memcpy (board_to, board_from, sizeof(struct board));
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user