refactor: split frag0 into multiple files

This commit is contained in:
2025-11-08 22:35:10 +01:00
parent b4b79cea12
commit 248c947fad
31 changed files with 2041 additions and 1875 deletions
+3 -1
View File
@@ -3,7 +3,7 @@
#ifndef FILE_H
#define FILE_H
File file_read(char *path);
void file_read(File *file, char *path);
bool file_should_update(File *file);
@@ -11,6 +11,8 @@ bool file_update(File *file);
void file_write(char *path, StringArray *lines);
void file_dump(char *path, char *content);
void file_free(File *file);
#endif /* FILE_H */