source: vendor/emx/current/include/gnu/termcap.h

Last change on this file was 18, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 1.7 KB
Line 
1/* Declarations for termcap library.
2 Copyright (C) 1991, 1992 Free Software Foundation, Inc.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
17
18/* Modified for emx by Eberhard Mattes, Aug 1994 */
19
20#ifndef _TERMCAP_H
21#define _TERMCAP_H 1
22
23#if defined (__cplusplus)
24extern "C" {
25#endif
26
27#if __STDC__
28
29extern int tgetent (char *buffer, const char *termtype);
30
31extern int tgetnum (const char *name);
32extern int tgetflag (const char *name);
33extern char *tgetstr (const char *name, char **area);
34
35extern char PC;
36extern short ospeed;
37extern void tputs (const char *string, int nlines, int (*outfun) ());
38
39extern char *tparam (const char *ctlstring, char *buffer, int size, ...);
40
41extern char *UP;
42extern char *BC;
43
44extern char *tgoto (const char *cstring, int hpos, int vpos);
45
46#else /* not __STDC__ */
47
48extern int tgetent ();
49
50extern int tgetnum ();
51extern int tgetflag ();
52extern char *tgetstr ();
53
54extern char PC;
55extern short ospeed;
56
57extern void tputs ();
58
59extern char *tparam ();
60
61extern char *UP;
62extern char *BC;
63
64extern char *tgoto ();
65
66#endif /* not __STDC__ */
67
68#if defined (__cplusplus)
69}
70#endif
71
72#endif /* not _TERMCAP_H */
Note: See TracBrowser for help on using the repository browser.