2026-03-31 14:48:38 +02:00

13 lines
223 B
C

#ifndef INPUT_H
#define INPUT_H
#include <stdio.h>
#define MAX_WORD_LEN 100
#define MAX_LINE_LEN 1024
char* readWord(FILE *file);
int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount);
#endif