From 69251d50ea6c088add4769ce61473a472ca53da2 Mon Sep 17 00:00:00 2001 From: Oskar Date: Wed, 13 Dec 2023 23:00:58 +0100 Subject: Ok it wasnt fixed but now i fixed it for real this time --- editmode.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'editmode.c') diff --git a/editmode.c b/editmode.c index d89a0d5..68657d6 100644 --- a/editmode.c +++ b/editmode.c @@ -144,12 +144,13 @@ int NEW_LINE(char filename[]) { // doin this test again FILE *file; file = fopen(filename, "a"); fputc('\n', file); + fputc('\n', file); fclose(file); return 0; } } - printf("continuing\n"); + char *line; // line is the line before the newline // line2 is the line right after line size_t start; // start is the position at the start of line -- cgit v1.2.3