Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 1 | /* tcap.h -- termcap library functions and variables. */ |
| 2 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 3 | /* Copyright (C) 1996-2009 Free Software Foundation, Inc. |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 4 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 5 | This file is part of the GNU Readline Library (Readline), a library |
| 6 | for reading lines of text with interactive input and history editing. |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 7 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 8 | Readline is free software: you can redistribute it and/or modify |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 9 | it under the terms of the GNU General Public License as published by |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 10 | the Free Software Foundation, either version 3 of the License, or |
| 11 | (at your option) any later version. |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 12 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 13 | Readline is distributed in the hope that it will be useful, |
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | GNU General Public License for more details. |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 17 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 18 | You should have received a copy of the GNU General Public License |
| 19 | along with Readline. If not, see <http://www.gnu.org/licenses/>. |
| 20 | */ |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 21 | |
| 22 | #if !defined (_RLTCAP_H_) |
| 23 | #define _RLTCAP_H_ |
| 24 | |
| 25 | #if defined (HAVE_CONFIG_H) |
| 26 | # include "config.h" |
| 27 | #endif |
| 28 | |
| 29 | #if defined (HAVE_TERMCAP_H) |
Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame] | 30 | # if defined (__linux__) && !defined (SPEED_T_IN_SYS_TYPES) |
| 31 | # include "rltty.h" |
| 32 | # endif |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 33 | # include <termcap.h> |
| 34 | #else |
| 35 | |
| 36 | /* On Solaris2, sys/types.h #includes sys/reg.h, which #defines PC. |
| 37 | Unfortunately, PC is a global variable used by the termcap library. */ |
| 38 | #ifdef PC |
| 39 | # undef PC |
| 40 | #endif |
| 41 | |
| 42 | extern char PC; |
| 43 | extern char *UP, *BC; |
| 44 | |
| 45 | extern short ospeed; |
| 46 | |
| 47 | extern int tgetent (); |
| 48 | extern int tgetflag (); |
| 49 | extern int tgetnum (); |
| 50 | extern char *tgetstr (); |
| 51 | |
| 52 | extern int tputs (); |
| 53 | |
| 54 | extern char *tgoto (); |
| 55 | |
| 56 | #endif /* HAVE_TERMCAP_H */ |
| 57 | |
| 58 | #endif /* !_RLTCAP_H_ */ |