refactor: pass structs as pointers except for background things

This commit is contained in:
2025-11-08 19:24:14 +01:00
parent 92f010ca70
commit 3b7a550b6a
23 changed files with 418 additions and 450 deletions
+1 -1
View File
@@ -3,6 +3,6 @@
#ifndef ARGS_H
#define ARGS_H
Parameters args_parse(int argc, char **argv);
void args_parse(Parameters *params, int argc, char **argv);
#endif /* ARGS_H */