home · contact · privacy
Split roguelike.(c|h) into main.(c|h) and misc.(c|h).
[plomrogue] / src / misc.h
1 #ifndef MISC_H
2 #define MISC_H
3
4 #include <stdint.h>
5
6 struct World;
7 struct WinMeta;
8 struct Win;
9
10 extern uint16_t rrand(char, uint32_t);
11 extern void update_log (struct World *, char *);
12 uint16_t center_offset (uint16_t, uint16_t, uint16_t);
13 extern void turn_over (struct World *, char);
14 extern void save_game(struct World *);
15 extern void toggle_window (struct WinMeta *, struct Win *);
16 extern void scroll_pad (struct WinMeta *, char);
17 extern void growshrink_active_window (struct WinMeta *, char);
18 extern unsigned char meta_keys(int, struct World *, struct WinMeta *, struct Win *, struct Win *, struct Win *, struct Win *);
19
20 #endif