gol/mpi/include/file.h
Logan Hunt 253b267f1c MPI
2021-12-06 21:44:51 -07:00

12 lines
208 B
C

#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