home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue4 / SDL / gcc346 / !gcc / include / unixlib / h / termcap < prev    next >
Encoding:
Text File  |  2006-09-17  |  850 b   |  33 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: /usr/local/cvsroot/gccsdk/unixlib/source/clib/termcap.h,v $
  4.  * $Date: 2002/09/24 21:02:36 $
  5.  * $Revision: 1.3 $
  6.  * $State: Exp $
  7.  * $Author: admin $
  8.  *
  9.  ***************************************************************************/
  10.  
  11. #ifndef __TERMCAP_H
  12. #define __TERMCAP_H
  13.  
  14. #ifndef __UNIXLIB_FEATURES_H
  15. #include <features.h>
  16. #endif
  17.  
  18. __BEGIN_DECLS
  19.  
  20. extern char PC, *BC, *UP;
  21. extern short ospeed;
  22.  
  23. extern int tgetent (char *__buffer, const char *__termtype);
  24. extern int tgetflag (const char *__name);
  25. extern int tgetnum (const char *__name);
  26. extern char *tgetstr (const char *__name, char **__area);
  27. extern char *tgoto (char *__cstring, int __hpos, int __vpos);
  28. extern int tputs (const char *__string, int nlines, int ((*__outfun) (int)));
  29.  
  30. __END_DECLS
  31.  
  32. #endif
  33.