diff options
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#include <stdio.h> + +#define MAX_LINE 256 + +int checkIfFileExists(char *path); +int lineCounter(char *dictionary); +char* getLine(char *dictionary, int line); +int getRandomNumber(int min, int max); |