Erster schnipsel

This commit is contained in:
Torsten Stock 2025-10-30 17:06:13 +01:00
parent 2a46dd9df7
commit f5337d419f

View File

@ -8,5 +8,7 @@
// Read words from file and store in 'words' array
int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
{
int a;
file = fopen("words.txt", "r"); //liest das doc ein
if (file == NULL)
return -1;
}