diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-08-27 21:53:28 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-08-27 21:53:28 +0100 |
commit | 2d11304ab4726d3904344d908c93c84a76391707 (patch) | |
tree | aa6d1d2ddb4225fb57f10d4ab06eebc52e8bb92a /lib.h | |
parent | 026aa887f99d87932fd5316152a15c1a79f5a6e2 (diff) | |
download | abelian-sandpile-2d11304ab4726d3904344d908c93c84a76391707.tar.gz abelian-sandpile-2d11304ab4726d3904344d908c93c84a76391707.tar.bz2 abelian-sandpile-2d11304ab4726d3904344d908c93c84a76391707.zip |
~file-handler->files,(main~>files)~migrated png save code to files.c
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 |