ttytype should have it's sive defined properly
[unix-history] / usr / src / lib / libcurses / curses.c
CommitLineData
6e1c93d0
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
7#ifndef lint
d20fafb5 8static char sccsid[] = "@(#)curses.c 5.2 (Berkeley) 11/8/85";
6e1c93d0
DF
9#endif not lint
10
07138e1e
KA
11/*
12 * Define global variables
13 *
07138e1e
KA
14 */
15# include "curses.h"
16
17bool _echoit = TRUE, /* set if stty indicates ECHO */
18 _rawmode = FALSE,/* set if stty indicates RAW mode */
19 My_term = FALSE,/* set if user specifies terminal type */
20 _endwin = FALSE;/* set if endwin has been called */
21
d20fafb5 22char ttytype[50], /* long name of tty */
07138e1e
KA
23 *Def_term = "unknown"; /* default terminal type */
24
25int _tty_ch = 1, /* file channel which is a tty */
26 LINES, /* number of lines allowed on screen */
27 COLS, /* number of columns allowed on screen */
28 _res_flg; /* sgtty flags for reseting later */
29
30WINDOW *stdscr = NULL,
31 *curscr = NULL;
32
33# ifdef DEBUG
34FILE *outf; /* debug output file */
35# endif
36
37SGTTY _tty; /* tty modes */
38
d45d8bdb 39bool AM, BS, CA, DA, DB, EO, HC, HZ, IN, MI, MS, NC, NS, OS, UL, XB, XN,
2b6e3652 40 XT, XS, XX;
d45d8bdb
JB
41char *AL, *BC, *BT, *CD, *CE, *CL, *CM, *CR, *CS, *DC, *DL, *DM,
42 *DO, *ED, *EI, *K0, *K1, *K2, *K3, *K4, *K5, *K6, *K7, *K8,
43 *K9, *HO, *IC, *IM, *IP, *KD, *KE, *KH, *KL, *KR, *KS, *KU,
44 *LL, *MA, *ND, *NL, *RC, *SC, *SE, *SF, *SO, *SR, *TA, *TE,
45 *TI, *UC, *UE, *UP, *US, *VB, *VS, *VE, *AL_PARM, *DL_PARM,
46 *UP_PARM, *DOWN_PARM, *LEFT_PARM, *RIGHT_PARM;
47char PC;
07138e1e 48
d45d8bdb
JB
49/*
50 * From the tty modes...
51 */
52
53bool GT, NONL, UPPERCASE, normtty, _pfast;