This commit is contained in:
maxgrf 2025-11-06 16:41:45 +01:00
parent 28a2aa1ea1
commit b9138e2097
4 changed files with 7 additions and 1 deletions

BIN
Start_Windows/game.o Normal file

Binary file not shown.

View File

@ -28,7 +28,13 @@ int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
for(i = 0; words[counter][i] != '\0'; i++) for(i = 0; words[counter][i] != '\0'; i++)
{ {
words[counter][i] = toupper(words[counter][i]); words[counter][i] = toupper(words[counter][i]);
printf("%c",words[counter][i]) printf("%c",words[counter][i]);
}
for(int z = 0; z < maxWordCount; z++)
{
for(int o = 0; o < MAX_WORD_LEN; o++)
words[z][o]
} }
/* /*

BIN
Start_Windows/input.o Normal file

Binary file not shown.

BIN
Start_Windows/runTests.exe Normal file

Binary file not shown.