#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