summaryrefslogtreecommitdiff
path: root/src/util.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.hpp')
-rw-r--r--src/util.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/util.hpp b/src/util.hpp
index e57235a9..8b8b2e3c 100644
--- a/src/util.hpp
+++ b/src/util.hpp
@@ -27,19 +27,19 @@ errr fd_seek(int fd, huge n);
errr fd_read(int fd, char *buf, huge n);
errr fd_write(int fd, cptr buf, huge n);
errr fd_close(int fd);
-void flush(void);
+void flush();
void flush_on_failure();
void move_cursor(int row, int col);
void text_to_ascii(char *buf, cptr str);
void ascii_to_text(char *buf, cptr str);
-char inkey_scan(void);
+char inkey_scan();
void display_message(int x, int y, int split, byte color, cptr t);
void cmsg_print(byte color, cptr msg);
void msg_print(cptr msg);
void cmsg_format(byte color, cptr fmt, ...);
void msg_format(cptr fmt, ...);
-void screen_save(void);
-void screen_load(void);
+void screen_save();
+void screen_load();
void c_put_str(byte attr, cptr str, int row, int col);
void c_put_str(byte attr, std::string const &str, int row, int col);
void put_str(cptr str, int row, int col);
@@ -75,7 +75,7 @@ timer_type *new_timer(void (*callback)(), s32b delay);
int get_keymap_mode();
void repeat_push(int what);
bool_ repeat_pull(int *what);
-void repeat_check(void);
+void repeat_check();
void get_count(int number, int max);
bool in_bounds(int y, int x);
bool in_bounds2(int y, int x);