diff --git a/src/main/c/TicTacToe.c b/src/main/c/TicTacToe.c index 6ee5c0e..bdcfcc4 100644 --- a/src/main/c/TicTacToe.c +++ b/src/main/c/TicTacToe.c @@ -115,7 +115,7 @@ void makeMove(char board[3][3], int row, int col) { } } // Hauptfunktion zum Spielen des Tic Tac Toe-Spiels -int mainx() { +int TicTacToe_ausfuehren() { int row; int col; char board[3][3];