summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libconsole.h
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-05-24 01:35:42 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-05-24 02:06:53 -0400
commit2d06bffd5ab5043f7c4cfe67328844405078ee07 (patch)
treee8dde0ac9aaf3e002adb5255902957c191a30196 /crawl-ref/source/libconsole.h
parentf638c35fa00d49858e26e5c095e56f24705d8408 (diff)
downloadcrawl-ref-2d06bffd5ab5043f7c4cfe67328844405078ee07.tar.gz
crawl-ref-2d06bffd5ab5043f7c4cfe67328844405078ee07.zip
Chance function(void) to function()
Diffstat (limited to 'crawl-ref/source/libconsole.h')
-rw-r--r--crawl-ref/source/libconsole.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/libconsole.h b/crawl-ref/source/libconsole.h
index 5ad692dda5..a6b7a5b243 100644
--- a/crawl-ref/source/libconsole.h
+++ b/crawl-ref/source/libconsole.h
@@ -12,19 +12,19 @@ int get_number_of_lines();
int get_number_of_cols();
int num_to_lines(int num);
-void clrscr(void);
+void clrscr();
void clear_to_end_of_line();
void gotoxy_sys(int x, int y);
void textcolor(int c);
void textbackground(int c);
void cprintf(const char *format, ...);
-int wherex(void);
-int wherey(void);
+int wherex();
+int wherey();
void putwch(ucs_t c);
-int getchk(void);
-int getch_ck(void);
-bool kbhit(void);
+int getchk();
+int getch_ck();
+bool kbhit();
void delay(unsigned int ms);
void puttext(int x, int y, const crawl_view_buffer &vbuf);
void update_screen();