summaryrefslogtreecommitdiff
path: root/7ed.h
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-04-12 19:18:52 +0200
committerOskar <[email protected]>2024-04-12 19:18:52 +0200
commit8454a5c30c8f5f17abd377965b61dc0786a08800 (patch)
tree2a491f7a364c3de23135dd1322a5dae4ef69e993 /7ed.h
parentd6ea48c5be4ec380d2ae18af19ce6107926f58ac (diff)
Changed types in various functions
Diffstat (limited to '7ed.h')
-rw-r--r--7ed.h6
1 files changed, 3 insertions, 3 deletions
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