diff options
-rw-r--r-- | functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.c b/functions.c index 416414d..e7a8ad6 100644 --- a/functions.c +++ b/functions.c @@ -108,7 +108,7 @@ void shuffle(char arr[], int n) { } } -int get_line(char filename[], long focus, char **line, size_t *start) { // Making this function was hell. Hardest thing ive coded in a while. +int get_line(char filename[], long focus, char **line, size_t *start) { FILE *file; file = fopen(filename,"r"); // Open file |