changing the do while loop

This commit is contained in:
Jonas Hofmann 2025-10-31 01:20:09 +01:00
parent 2d3be4d58a
commit bbdb1f2208
3 changed files with 8 additions and 8 deletions

View File

@ -20,7 +20,7 @@ int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
return 0; return 0;
} }
fgets(buffer, MAX_LINE_LEN, file); fgets(buffer, MAX_LINE_LEN * maxWordCount, file);
//fscanf(file, "%s", buffer); //fscanf(file, "%s", buffer);
do do
@ -55,7 +55,7 @@ int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
} }
i++; i++;
} while ((i < MAX_LINE_LEN) || (word < maxWordCount)); } while ((i < MAX_LINE_LEN) && (word < maxWordCount));
return word+1; return word + 1;
} }

Binary file not shown.

Binary file not shown.