diff options
Diffstat (limited to 'include/ttyio.h')
-rw-r--r-- | include/ttyio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ttyio.h b/include/ttyio.h index 8e8722d7c..f3d83b9dc 100644 --- a/include/ttyio.h +++ b/include/ttyio.h @@ -30,9 +30,9 @@ int tty_batchmode( int onoff ); void tty_printf (const char *fmt, ... ); void tty_fprintf (FILE *fp, const char *fmt, ... ); #endif -void tty_print_string( byte *p, size_t n ); -void tty_print_utf8_string( byte *p, size_t n ); -void tty_print_utf8_string2( byte *p, size_t n, size_t max_n ); +void tty_print_string( const byte *p, size_t n ); +void tty_print_utf8_string( const byte *p, size_t n ); +void tty_print_utf8_string2( const byte *p, size_t n, size_t max_n ); char *tty_get( const char *prompt ); char *tty_get_hidden( const char *prompt ); void tty_kill_prompt(void); |