1997-11-18 15:06:00 +01:00
|
|
|
/* ttyio.h
|
2005-03-18 21:17:38 +01:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001, 2005 Free Software Foundation, Inc.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-06-16 17:13:28 +02:00
|
|
|
* This file is part of GNUPG.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-06-16 17:13:28 +02:00
|
|
|
* GNUPG is free software; you can redistribute it and/or modify
|
1997-11-18 15:06:00 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-10-23 12:48:09 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1997-11-18 15:06:00 +01:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
1998-06-16 17:13:28 +02:00
|
|
|
* GNUPG is distributed in the hope that it will be useful,
|
1997-11-18 15:06:00 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-10-23 12:48:09 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
1997-11-18 15:06:00 +01:00
|
|
|
*/
|
2002-06-29 15:31:13 +02:00
|
|
|
#ifndef G10_TTYIO_H
|
|
|
|
#define G10_TTYIO_H
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2005-03-18 21:17:38 +01:00
|
|
|
#ifdef HAVE_LIBREADLINE
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <readline/readline.h>
|
|
|
|
#endif
|
|
|
|
|
2002-11-09 18:49:01 +01:00
|
|
|
const char *tty_get_ttyname (void);
|
1999-04-18 10:18:52 +02:00
|
|
|
int tty_batchmode( int onoff );
|
2002-06-29 15:31:13 +02:00
|
|
|
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5 )
|
|
|
|
void tty_printf (const char *fmt, ... ) __attribute__ ((format (printf,1,2)));
|
2003-09-28 15:42:18 +02:00
|
|
|
void tty_fprintf (FILE *fp, const char *fmt, ... )
|
|
|
|
__attribute__ ((format (printf,2,3)));
|
2002-06-29 15:31:13 +02:00
|
|
|
#else
|
|
|
|
void tty_printf (const char *fmt, ... );
|
2003-09-28 15:42:18 +02:00
|
|
|
void tty_fprintf (FILE *fp, const char *fmt, ... );
|
2002-06-29 15:31:13 +02:00
|
|
|
#endif
|
2003-10-08 17:20:58 +02:00
|
|
|
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 );
|
1997-11-18 15:06:00 +01:00
|
|
|
char *tty_get( const char *prompt );
|
|
|
|
char *tty_get_hidden( const char *prompt );
|
|
|
|
void tty_kill_prompt(void);
|
1998-07-29 21:35:05 +02:00
|
|
|
int tty_get_answer_is_yes( const char *prompt );
|
1999-06-15 14:31:07 +02:00
|
|
|
int tty_no_terminal(int onoff);
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2010-09-28 12:07:30 +02:00
|
|
|
#ifdef __VMS
|
|
|
|
FILE *ttyfp_is (void);
|
|
|
|
void init_ttyfp (void);
|
|
|
|
#endif /*__VMS*/
|
|
|
|
|
2005-03-18 21:17:38 +01:00
|
|
|
#ifdef HAVE_LIBREADLINE
|
|
|
|
void tty_enable_completion(rl_completion_func_t *completer);
|
|
|
|
void tty_disable_completion(void);
|
|
|
|
#else
|
|
|
|
/* Use a macro to stub out these functions since a macro has no need
|
|
|
|
to typedef a "rl_completion_func_t" which would be undefined
|
|
|
|
without readline. */
|
|
|
|
#define tty_enable_completion(x)
|
|
|
|
#define tty_disable_completion()
|
|
|
|
#endif
|
2009-05-22 17:38:49 +02:00
|
|
|
void tty_cleanup_after_signal (void);
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2002-06-29 15:31:13 +02:00
|
|
|
#endif /*G10_TTYIO_H*/
|