blob: 9d09b7a9cfcd7f4bb8401cf7ca429ec2514e2c15 [file] [log] [blame]
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001/* tcap.h -- termcap library functions and variables. */
2
Jari Aalto31859422009-01-12 13:36:28 +00003/* Copyright (C) 1996-2009 Free Software Foundation, Inc.
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004
Jari Aalto31859422009-01-12 13:36:28 +00005 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 Aaltoccc6cda1996-12-23 17:02:34 +00007
Jari Aalto31859422009-01-12 13:36:28 +00008 Readline is free software: you can redistribute it and/or modify
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009 it under the terms of the GNU General Public License as published by
Jari Aalto31859422009-01-12 13:36:28 +000010 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
Jari Aaltoccc6cda1996-12-23 17:02:34 +000012
Jari Aalto31859422009-01-12 13:36:28 +000013 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 Aaltoccc6cda1996-12-23 17:02:34 +000017
Jari Aalto31859422009-01-12 13:36:28 +000018 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 Aaltoccc6cda1996-12-23 17:02:34 +000021
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 Aaltod166f041997-06-05 14:59:13 +000030# if defined (__linux__) && !defined (SPEED_T_IN_SYS_TYPES)
31# include "rltty.h"
32# endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +000033# 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
42extern char PC;
43extern char *UP, *BC;
44
45extern short ospeed;
46
47extern int tgetent ();
48extern int tgetflag ();
49extern int tgetnum ();
50extern char *tgetstr ();
51
52extern int tputs ();
53
54extern char *tgoto ();
55
56#endif /* HAVE_TERMCAP_H */
57
58#endif /* !_RLTCAP_H_ */