Browse Source

refactoring: change function name from showInvalidInputMessage()

int showInvalidInputWarning()
remotes/origin/Ahmad
fdai7726 11 months ago
parent
commit
ff4961c714
  1. 6
      src/main/c/VierGewinnt.c

6
src/main/c/VierGewinnt.c

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

Loading…
Cancel
Save