Imported Upstream version 1.1.11
[platform/upstream/cdrkit.git] / include / termcap.h
1 /*
2  * This file has been modified for the cdrkit suite.
3  *
4  * The behaviour and appearence of the program code below can differ to a major
5  * extent from the version distributed by the original author(s).
6  *
7  * For details, see Changelog file distributed with the cdrkit package. If you
8  * received this file from another source then ask the distributing person for
9  * a log of modifications.
10  *
11  */
12
13 /* @(#)termcap.h        1.6 03/06/15 Copyright 1995 J. Schilling */
14 /*
15  *      Copyright (c) 1995 J. Schilling
16  */
17 /*
18  * This program is free software; you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License version 2
20  * as published by the Free Software Foundation.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License along with
28  * this program; see the file COPYING.  If not, write to the Free Software
29  * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30  */
31
32 #ifndef _TERMCAP_H
33 #define _TERMCAP_H
34
35 #ifndef _MCONFIG_H
36 #include <mconfig.h>
37 #endif
38 #ifndef _PROTOTYP_H
39 #include <prototyp.h>
40 #endif
41
42 #ifdef  __cplusplus
43 extern "C" {
44 #endif
45
46 /*
47  * Flags for tcsetflags()
48  */
49 #define TCF_NO_TC               0x0001  /* Don't follow tc= entries */
50 #define TCF_NO_SIZE             0x0002  /* Don't get actual ttysize (li#/co#)*/
51 #define TCF_NO_STRIP            0x0004  /* Don't strip down termcap buffer */
52
53 extern  char    PC;             /* Pad character */
54 extern  char    *BC;            /* Backspace if not "\b" from "bc" capability*/
55 extern  char    *UP;            /* Cursor up string from "up" capability */
56 extern  short   ospeed;         /* output speed coded as in ioctl */
57
58 extern  int     tgetent(char *bp, char *name);
59 extern  int     tcsetflags(int flags);
60 extern  char    *tcgetbuf(void);
61 extern  int     tgetnum(char *ent);
62 extern  BOOL    tgetflag(char *ent);
63 extern  char    *tgetstr(char *ent, char **array);
64 extern  char    *tdecode(char *ep, char **array);
65
66 extern  int     tputs(char *cp, int affcnt, int (*outc)(int c));
67 extern  char    *tgoto(char *cm, int destcol, int destline);
68
69 #ifdef  __cplusplus
70 }
71 #endif
72
73 #endif  /* _TERMCAP_H */