diff options
author | Oskar <[email protected]> | 2024-04-12 19:18:52 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-04-12 19:18:52 +0200 |
commit | 8454a5c30c8f5f17abd377965b61dc0786a08800 (patch) | |
tree | 2a491f7a364c3de23135dd1322a5dae4ef69e993 /7ed.h | |
parent | d6ea48c5be4ec380d2ae18af19ce6107926f58ac (diff) |
Changed types in various functions
Diffstat (limited to '7ed.h')
-rw-r--r-- | 7ed.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |