From 74ea6dc86646cee9915292d73d8c7afef01ef3e0 Mon Sep 17 00:00:00 2001 From: Sopár Adrián Date: Thu, 20 Jun 2024 09:28:14 +0200 Subject: First commit. This is mostly the state of the project as I left it around the end of 2019. --- src/file.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/file.h (limited to 'src/file.h') 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 -- cgit v1.2.3