diff options
author | Oskar <[email protected]> | 2024-04-05 13:48:29 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-04-05 13:48:29 +0200 |
commit | 918acf5dc55fa27f2ba4121b8dd07fd5cde036bd (patch) | |
tree | 23447c51fc613bfced52e48bcab00d9251142c40 /process_multiples.h | |
parent | 06936a1b2c59ccc6b13e32e52dea60c5cabb547d (diff) |
Working on 'N' now. Works pretty well. But it's not finished so i cant
say how well it will go when i do N plus continue or N immediate.
Diffstat (limited to 'process_multiples.h')
-rw-r--r-- | process_multiples.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/process_multiples.h b/process_multiples.h index f509f5a..6dc4067 100644 --- a/process_multiples.h +++ b/process_multiples.h @@ -1,6 +1,6 @@ #include <stdint.h> uint64_t call_L(char *multiple, uint64_t focus, uint64_t Flines); -int call_N(char *multiple); -int call_X(char *multiple); -int call_D(char *multiple);
\ No newline at end of file +uint64_t call_N(char *multiple, uint64_t focus, uint64_t Flines, char *filename); +uint64_t call_X(char *multiple); +uint64_t call_D(char *multiple);
\ No newline at end of file |