diff --git a/Start_Windows/input.c b/Start_Windows/input.c index 80d39f7..2d49de6 100644 --- a/Start_Windows/input.c +++ b/Start_Windows/input.c @@ -25,13 +25,13 @@ int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount) token[i] = toupper(token[i]); // Prüfen, ob das Wort nur A-Z enthält - if (!isValidWord(token)) + /*if (!isValidWord(token)) { fprintf(stderr, "Ungültiges Wort gefunden: '%s'. Nur Buchstaben A-Z erlaubt.\n", token); token = strtok(NULL, delimiters); continue; // Wort ignorieren } - + */ } // Wort ins Array kopieren