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
+2 -4
View File
@@ -5,14 +5,12 @@
File file_read(char *path);
bool file_should_update(File file);
bool file_should_update(File *file);
bool file_update(File *file);
void file_write(char *path, StringArray lines);
void file_write(char *path, StringArray *lines);
void file_free(File *file);
void file_free_array(FileArray *files);
#endif /* FILE_H */