|
|
@ -49,7 +49,7 @@ int checkDiagonalRL(char board[ROWS][COLS], char player); |
|
|
|
// Funktionsprototyp für showMessage |
|
|
|
void showMessage(const char* messageColor, const char* message); |
|
|
|
//Funktionsprototyp für showInvalidInputMessage |
|
|
|
void showInvalidInputMessage(); |
|
|
|
void showInvalidInputWarning(); |
|
|
|
|
|
|
|
//Funktionsprototyp für showColumnFullMessage |
|
|
|
void showColumnFullMessage(); |
|
|
@ -72,7 +72,7 @@ int main_function() { |
|
|
|
|
|
|
|
scanf("%d", &column); |
|
|
|
if (column < 1 || column > 7) { |
|
|
|
showInvalidInputMessage(); |
|
|
|
showInvalidInputWarning(); |
|
|
|
continue; |
|
|
|
} |
|
|
|
|
|
|
@ -233,7 +233,7 @@ void showMessage(const char* messageColor, const char* message) { |
|
|
|
} |
|
|
|
|
|
|
|
// Write showInvalidInputMessage function |
|
|
|
void showInvalidInputMessage() { |
|
|
|
void showInvalidInputWarning() { |
|
|
|
showMessage(RED, "Ungültige Eingabe. Bitte wähle eine Spalte zwischen 1 und 7.\n"); |
|
|
|
} |
|
|
|
|
|
|
|