blob: b2db38083440d3f30e8d248ca93c220f220f7673 (
plain)
1
2
3
4
5
6
7
8
9
10
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
|