summaryrefslogtreecommitdiff
path: root/load.h
diff options
context:
space:
mode:
Diffstat (limited to 'load.h')
-rw-r--r--load.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/load.h b/load.h
new file mode 100644
index 0000000..9074719
--- /dev/null
+++ b/load.h
@@ -0,0 +1,10 @@
+#ifndef SUDOKU_LOAD_H
+#define SUDOKU_LOAD_H
+
+#include <stdio.h>
+
+#include "cell.h"
+
+int load(FILE *f, struct cell (*b)[9][9]);
+
+#endif /* SUDOKU_LOAD_H */