diff options
Diffstat (limited to 'libterm/term_io.h')
-rw-r--r-- | libterm/term_io.h | 9 |
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 |