diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index e6f275a..1eeb4f8 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -83,7 +83,7 @@ int getNumberOfMoves(const TicTacToeGame* game) { return moves; } -int isBoardFull(const TicTacToeGame* game) { +int BoardFull(const TicTacToeGame* game) { for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { if (game->board[i][j] == EMPTY) { @@ -94,7 +94,7 @@ int isBoardFull(const TicTacToeGame* game) { return 1; // Das Spielfeld ist vollständig gefüllt } -int isFieldEmpty(const TicTacToeGame* game, int row, int col) { +int FieldEmpty(const TicTacToeGame* game, int row, int col) { // Überprüfe, ob die angegebenen Zeilen- und Spaltenindizes innerhalb des Spielfelds liegen if (row < 0 || row >= 3 || col < 0 || col >= 3) { return 0; // Ungültige Indizes, das Feld ist nicht leer