Jonas Stamm 8a9bb66d8a revert 93da8ea94d7e97cd614705fea32f85ef061c78c8
revert Added Schröder Changes to makefiles and 49 other files
2025-10-22 19:29:43 +00:00

12 lines
352 B
C

#include "input.h"
#include <string.h>
#include <ctype.h>
// TODO:
// eine Funktion implementieren, die ein einzelnes Wort aus einer Textdatei (words.txt) einliest und als C-String zurückgibt.
// Read words from file and store in 'words' array
int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
{
printf("Hallo");
}