gol/mpi/include/file.h

12 lines
208 B
C
Raw Normal View History

2021-12-06 23:44:51 -05:00
#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