diff options
author | Simponic <loganhunt@simponic.xyz> | 2021-12-04 13:34:49 -0700 |
---|---|---|
committer | Simponic <loganhunt@simponic.xyz> | 2021-12-04 13:34:49 -0700 |
commit | aa1d7c6e284cc0818325614391619f3ff13d3e94 (patch) | |
tree | 8a59a6b3e5aacb7f682756d3c7751f1d72e1d940 /serial/include/file.h | |
download | gol-aa1d7c6e284cc0818325614391619f3ff13d3e94.tar.gz gol-aa1d7c6e284cc0818325614391619f3ff13d3e94.zip |
Initial commit
Diffstat (limited to 'serial/include/file.h')
-rw-r--r-- | serial/include/file.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/serial/include/file.h b/serial/include/file.h new file mode 100644 index 0000000..b2db380 --- /dev/null +++ b/serial/include/file.h @@ -0,0 +1,11 @@ +#include "game.h" +#include <stdlib.h> +#include <stdio.h> + +#ifndef FILE_H +#define FILE_H + +void read_in(char* filename, struct GAME* game); +void write_out(char* filename, struct GAME* game); + +#endif //FILE_H |