evaluation

This commit is contained in:
2024-03-24 16:53:44 +01:00
parent 84fad9abb8
commit 21de797d66
7 changed files with 144 additions and 11 deletions

View File

@ -53,3 +53,8 @@ void printMove(const struct move_t move) {
printf("%c", piece);
}
}
void printMoveln(const struct move_t move) {
printMove(move);
printf("\n");
}