From 8454a5c30c8f5f17abd377965b61dc0786a08800 Mon Sep 17 00:00:00 2001 From: Oskar Date: Fri, 12 Apr 2024 19:18:52 +0200 Subject: Changed types in various functions --- 7ed.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '7ed.h') diff --git a/7ed.h b/7ed.h index a65e3fe..90788b5 100644 --- a/7ed.h +++ b/7ed.h @@ -24,12 +24,12 @@ void shuffle(char arr[], int n); int startmode(char filename[]); -int get_line(char filename[], long focus, char **line, size_t *start); +int get_line(char *filename, long focus, char **line, size_t *start); int editmode(char filename[], uint64_t focus); -int new_line(char filename[], long new_line_pos_temp); +int new_line(char filename[], long long new_line_pos_temp); -int remove_line_contents(char filename[], long focus); +int remove_line_contents(char filename[], uint64_t focus); int delete_specified_newline(char filename[], long focus); \ No newline at end of file -- cgit v1.2.3