Browse Source

refactoring:Funktionsnamen gekürzt

remotes/origin/homan
fdai7892 11 months ago
parent
commit
3ca5775290
  1. 4
      src/main/duellist-spielesammlung-projekt.c

4
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

Loading…
Cancel
Save