Added a comment that the user is responsible for not overflowing the

screen.
This commit is contained in:
Roland Illig 2005-09-01 17:04:05 +00:00
parent f901a3549c
commit 7b95eee94a

View File

@ -28,6 +28,13 @@ extern void tty_disable_interrupt_key(void);
extern gboolean tty_got_interrupt(void);
/* Output */
/*
The output functions do not check themselves for screen overflows,
so make sure that you never write more than what fits on the screen.
While SLang provides such a feature, ncurses does not.
*/
extern void tty_gotoyx(int, int);
extern void tty_getyx(int *, int *);
extern void tty_print_char(int);