diff options
author | Oskar <> | 2024-03-21 15:34:33 +0100 |
---|---|---|
committer | Oskar <> | 2024-03-21 15:34:33 +0100 |
commit | bcfd89d55643bce5ebe5b8c01cea4a056f32303a (patch) | |
tree | c68675495c41ff90a32c0128c9ebdcc83fb95475 | |
parent | 713f7440b97c70357bb507458305cb05e312f1f6 (diff) |
removed useless comment
-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 |