diff options
Diffstat (limited to 'mpi/include/file.h')
-rw-r--r-- | mpi/include/file.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mpi/include/file.h b/mpi/include/file.h new file mode 100644 index 0000000..b2db380 --- /dev/null +++ b/mpi/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 |