diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/iobuf.h | 1 | ||||
-rw-r--r-- | include/ttyio.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/iobuf.h b/include/iobuf.h index f2e6b3f21..71819c805 100644 --- a/include/iobuf.h +++ b/include/iobuf.h @@ -64,6 +64,7 @@ IOBUF iobuf_alloc(int usage, size_t bufsize); IOBUF iobuf_temp(void); IOBUF iobuf_open( const char *fname ); IOBUF iobuf_create( const char *fname ); +IOBUF iobuf_append( const char *fname ); int iobuf_close( IOBUF iobuf ); int iobuf_cancel( IOBUF iobuf ); diff --git a/include/ttyio.h b/include/ttyio.h index 80f66d842..6d599870f 100644 --- a/include/ttyio.h +++ b/include/ttyio.h @@ -21,6 +21,7 @@ #define G10_TTYIO_H void tty_printf( const char *fmt, ... ); +void tty_print_string( byte *p, size_t n ); char *tty_get( const char *prompt ); char *tty_get_hidden( const char *prompt ); void tty_kill_prompt(void); |