1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

(tty_print_string, tty_print_utf8_string2)

(tty_print_utf8_string): Made string arg const.
This commit is contained in:
Werner Koch 2003-10-08 15:20:58 +00:00
parent b7bd594c8c
commit fcbd46e070
3 changed files with 11 additions and 6 deletions

View file

@ -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);