home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- *
- * $Source: /usr/local/cvsroot/gccsdk/unixlib/source/clib/termcap.h,v $
- * $Date: 2002/09/24 21:02:36 $
- * $Revision: 1.3 $
- * $State: Exp $
- * $Author: admin $
- *
- ***************************************************************************/
-
- #ifndef __TERMCAP_H
- #define __TERMCAP_H
-
- #ifndef __UNIXLIB_FEATURES_H
- #include <features.h>
- #endif
-
- __BEGIN_DECLS
-
- extern char PC, *BC, *UP;
- extern short ospeed;
-
- extern int tgetent (char *__buffer, const char *__termtype);
- extern int tgetflag (const char *__name);
- extern int tgetnum (const char *__name);
- extern char *tgetstr (const char *__name, char **__area);
- extern char *tgoto (char *__cstring, int __hpos, int __vpos);
- extern int tputs (const char *__string, int nlines, int ((*__outfun) (int)));
-
- __END_DECLS
-
- #endif
-