1 /* tcap.h -- termcap library functions and variables. */
3 /* Copyright (C) 1996-2009 Free Software Foundation, Inc.
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.
8 Readline is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
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.
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/>.
22 #if !defined (_RLTCAP_H_)
25 #if defined (HAVE_CONFIG_H)
29 #if defined (HAVE_TERMCAP_H)
30 # if defined (__linux__) && !defined (SPEED_T_IN_SYS_TYPES)
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. */
47 extern int tgetent ();
48 extern int tgetflag ();
49 extern int tgetnum ();
50 extern char *tgetstr ();
54 extern char *tgoto ();
56 #endif /* HAVE_TERMCAP_H */
58 #endif /* !_RLTCAP_H_ */