yet another tiny update
[mc1516pa.git] / modelchecker / sokoban.h
index 6b8823d..7043a74 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef SOKOBAN_H
 #define SOKOBAN_H
 #include <stdio.h>
+#include <stdbool.h>
 
 #include "uthash.h"
 
@@ -17,7 +18,7 @@ typedef struct {
        UT_hash_handle hh;
 } sokoban_screen;
 
-sokoban_screen *parse_screen(FILE *stream);
+sokoban_screen *parse_screen(FILE *stream, bool safe);
 
 sokoban_screen *get_coord(int x, int y, sokoban_screen *screen);