diff options
author | Oskar <[email protected]> | 2023-12-13 23:00:58 +0100 |
---|---|---|
committer | Oskar <[email protected]> | 2023-12-13 23:00:58 +0100 |
commit | 69251d50ea6c088add4769ce61473a472ca53da2 (patch) | |
tree | 2c181592fcad7008377cf8aefbf66053579f8126 /editmode.c | |
parent | 84b2e02080b5fded466e18694426d7d26db8e194 (diff) |
Ok it wasnt fixed but now i fixed it for real this time
Diffstat (limited to 'editmode.c')
-rw-r--r-- | editmode.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |