home · contact · privacy
Moved initialization of map object definitions from defs file into map_objects library.
[plomrogue] / src / misc.h
index 64e10db078e6d38dcd71645ef8649f65ec13499f..5d90d15c59cf68d1e93fc47de3d442330db74f95 100644 (file)
@@ -2,6 +2,7 @@
 #define MISC_H
 
 #include <stdint.h>
+#include <stdio.h>
 #include "yx_uint16.h"
 
 struct World;
@@ -9,6 +10,7 @@ struct WinMeta;
 struct Win;
 struct Map;
 
+extern void textfile_sizes (FILE *, uint16_t *, uint16_t *);
 extern uint16_t rrand(char, uint32_t);
 extern void update_log (struct World *, char *);
 extern uint16_t center_offset (uint16_t, uint16_t, uint16_t);