diff options
Diffstat (limited to 'src/file.h')
| -rw-r--r-- | src/file.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/file.h b/src/file.h new file mode 100644 index 0000000..5e5268d --- /dev/null +++ b/src/file.h @@ -0,0 +1,10 @@ +#ifndef MAZE_FILE_H +#define MAZE_FILE_H + +#include "maze.h" + +struct maze *maze_from_file(char *path); + +int maze_to_file(char *path, struct maze *maze); + +#endif
\ No newline at end of file |
