source: trunk/src/emx/include/gnu/termcap.h@ 1739

Last change on this file since 1739 was 1506, checked in by bird, 21 years ago

@unixroot. header reviews. ++

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