summaryrefslogtreecommitdiff
path: root/libterm/term_io.h
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2015-01-10 15:10:01 +0900
committerFreeArtMan <dos21h@gmail.com>2015-01-10 15:10:01 +0900
commit3e61314544a9151cb5a49db12a58c4fb74d6bee3 (patch)
tree5b9116b87b6c8abbc3ac13febc158007e3ccd071 /libterm/term_io.h
parent3e989921c29534d38dbf6009851389fc4f4e226e (diff)
downloadmicrobbs-3e61314544a9151cb5a49db12a58c4fb74d6bee3.tar.gz
microbbs-3e61314544a9151cb5a49db12a58c4fb74d6bee3.zip
Bumped libterm
Diffstat (limited to 'libterm/term_io.h')
-rw-r--r--libterm/term_io.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/libterm/term_io.h b/libterm/term_io.h
index 3d9243f..8c57282 100644
--- a/libterm/term_io.h
+++ b/libterm/term_io.h
@@ -7,8 +7,11 @@
#include "screen_modes.h"
#include "term.h"
-int term_fprint( screen_mode_e, FILE* );
-int term_print( term_screen*, const char*, size_t, int, int );
-int term_getc( term_screen* );
+int term_fprint( screen_mode_e mode, FILE *f );
+int term_print( term_screen *ts, const char *s, size_t n );
+int term_print_xy( term_screen *ts, const char *buf, size_t size,
+ int init_column, int init_row);
+int term_draw_hline( term_screen *ts, int pc, int pr, int sz, char ch );
+int term_getc( term_screen *ts );
#endif