*** empty log message ***
[bpt/emacs.git] / src / terminfo.c
... / ...
CommitLineData
1/* Interface from Emacs to terminfo.
2 Copyright (C) 1985, 1986 Free Software Foundation, Inc.
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
21#include <config.h>
22#include "lisp.h"
23
24/* Define these variables that serve as global parameters to termcap,
25 so that we do not need to conditionalize the places in Emacs
26 that set them. */
27
28char *UP, *BC, PC;
29
30#ifdef HAVE_SPEED_T
31#include <termios.h>
32speed_t ospeed;
33#else
34#if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T)
35short ospeed;
36#else
37#if defined (HAVE_TERMIOS_H) && defined (LINUX)
38#include <termios.h>
39/* HJL's version of libc is said to need this on the Alpha.
40 On the other hand, DEC OSF1 on the Alpha needs ospeed to be a short. */
41speed_t ospeed;
42#else
43short ospeed;
44#endif
45#endif
46#endif
47
48/* Interface to curses/terminfo library.
49 Turns out that all of the terminfo-level routines look
50 like their termcap counterparts except for tparm, which replaces
51 tgoto. Not only is the calling sequence different, but the string
52 format is different too.
53*/
54
55char *
56tparam (string, outstring, len, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)
57 char *string;
58 char *outstring;
59 int arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9;
60{
61 char *temp;
62 extern char *tparm();
63
64 temp = tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
65 if (outstring == 0)
66 outstring = ((char *) (xmalloc ((strlen (temp)) + 1)));
67 strcpy (outstring, temp);
68 return outstring;
69}