Compare commits

..

No commits in common. "0c086b96072334f87756142d99752dff150dfafa" and "5162e9890d76a5713b7af03a8b0b4b761c3e9f15" have entirely different histories.

3 changed files with 18 additions and 22 deletions

Binary file not shown.

View File

@ -8,29 +8,21 @@
// Read words from file and store in 'words' array // Read words from file and store in 'words' array
int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount) int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
{ {
char line[1024]; // Puffer für eine Zeile if (file == NULL) {
printf("Datei konnte nicht geoffnet werden");
return 0;
}
// 2D char Array um wörter zu speichern
char word[MAX_WORD_LEN];
unsigned int count = 0; unsigned int count = 0;
while (fscanf(file, "%s", word) != EOF && count < maxWordCount) {
// Alle gewünschten Trennzeichen // Kopiere das gelesene Wort in das 2D-Array
const char *delimiters = " \t\n,.;:!?\"'()[]{}"; strncpy(words[count], word, MAX_WORD_LEN - 1);
words[count][MAX_WORD_LEN - 1] = '\0'; // Sicherstellen, dass der String nullterminiert ist
while (fgets(line, sizeof(line), file) && count < maxWordCount) {
char *token = strtok(line, delimiters);
while (token != NULL && count < maxWordCount) {
// Alles in Großbuchstaben umwandeln
for (int i = 0; token[i]; i++) {
token[i] = toupper(token[i]);
}
strncpy(words[count], token, MAX_WORD_LEN - 1);
words[count][MAX_WORD_LEN - 1] = '\0'; // Nullterminierung
count++; count++;
token = strtok(NULL, delimiters);
} }
}
fclose(file); fclose(file);
return count; return count;
} }

View File

@ -1 +1,5 @@
test Yeti,Nessie Werwolf; Vampir
Monster
Hydra;Frankenstein
Dracula;KingKong;Gremlin;Kobold,Hexe;Poltergeist
Gespenst, Oger