aboutsummaryrefslogtreecommitdiff
path: root/src/file.h
blob: 5e5268de8b765d278c1969c92e6514f07639f269 (plain)
1
2
3
4
5
6
7
8
9
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