]> git.ipfire.org Git - thirdparty/bash.git/blame - lib/readline/tcap.h
bash-4.4 rc1 release
[thirdparty/bash.git] / lib / readline / tcap.h
CommitLineData
ccc6cda3
JA
1/* tcap.h -- termcap library functions and variables. */
2
690150f9 3/* Copyright (C) 1996-2015 Free Software Foundation, Inc.
ccc6cda3 4
2e4498b3
CR
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.
ccc6cda3 7
2e4498b3 8 Readline is free software: you can redistribute it and/or modify
ccc6cda3 9 it under the terms of the GNU General Public License as published by
2e4498b3
CR
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
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.
17
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*/
ccc6cda3
JA
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)
d166f048
JA
30# if defined (__linux__) && !defined (SPEED_T_IN_SYS_TYPES)
31# include "rltty.h"
32# endif
ccc6cda3 33# include <termcap.h>
687a967e
CR
34#elif defined (HAVE_NCURSES_TERMCAP_H)
35# include <ncurses/termcap.h>
ccc6cda3
JA
36#else
37
38/* On Solaris2, sys/types.h #includes sys/reg.h, which #defines PC.
39 Unfortunately, PC is a global variable used by the termcap library. */
40#ifdef PC
41# undef PC
42#endif
43
44extern char PC;
45extern char *UP, *BC;
46
47extern short ospeed;
48
49extern int tgetent ();
50extern int tgetflag ();
51extern int tgetnum ();
52extern char *tgetstr ();
53
54extern int tputs ();
55
56extern char *tgoto ();
57
58#endif /* HAVE_TERMCAP_H */
59
60#endif /* !_RLTCAP_H_ */