~file-handler->files,(main~>files)~migrated png save code to files.c

This commit is contained in:
2023-08-27 21:53:28 +01:00
parent 026aa887f9
commit 2d11304ab4
5 changed files with 53 additions and 145 deletions

3
lib.h
View File

@@ -18,7 +18,6 @@ typedef struct State
uint64_t payload;
} state_t;
bool load_from_file(state_t *state, const char *filepath);
bool write_to_file(state_t *state, const char *filepath);
bool write_to_png(state_t *state, const char *filepath);
#endif