2006-09-06 Marcus Brinkmann <marcus@g10code.de>
[gnupg.git] / common / ttyio.h
blob32d159863392808494acba914af52e3e0857f8a7
1 /* ttyio.h
2 * Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
4 * This file is part of GNUPG.
6 * GNUPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * GNUPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 * USA.
21 #ifndef GNUPG_COMMON_TTYIO_H
22 #define GNUPG_COMMON_TTYIO_H
24 #ifdef HAVE_LIBREADLINE
25 #include <stdio.h>
26 #include <readline/readline.h>
27 #endif
29 const char *tty_get_ttyname (void);
30 int tty_batchmode (int onoff);
31 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5 )
32 void tty_printf (const char *fmt, ... )
33 __attribute__ ((format (printf,1,2)));
34 void tty_fprintf (FILE *fp, const char *fmt, ... )
35 __attribute__ ((format (printf,2,3)));
36 #else
37 void tty_printf (const char *fmt, ... );
38 void tty_fprintf (FILE *fp, const char *fmt, ... );
39 #endif
40 void tty_print_string (const unsigned char *p, size_t n);
41 void tty_print_utf8_string (const unsigned char *p, size_t n);
42 void tty_print_utf8_string2 (const unsigned char *p, size_t n, size_t max_n);
43 char *tty_get (const char *prompt);
44 char *tty_get_hidden (const char *prompt);
45 void tty_kill_prompt (void);
46 int tty_get_answer_is_yes (const char *prompt);
47 int tty_no_terminal (int onoff);
49 #ifdef HAVE_LIBREADLINE
50 void tty_enable_completion(rl_completion_func_t *completer);
51 void tty_disable_completion(void);
52 #else
53 /* Use a macro to stub out these functions since a macro has no need
54 to typedef a "rl_completion_func_t" which would be undefined
55 without readline. */
56 #define tty_enable_completion(x)
57 #define tty_disable_completion()
58 #endif
61 #endif /*GNUPG_COMMON_TTYIO_H*/