home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / unix / unixlib_1 / !UnixLib37_src_clib_h_termcap < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-09  |  793 b   |  37 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: /unixb/home/unixlib/source/unixlib37/src/clib/h/RCS/termcap,v $
  4.  * $Date: 1996/04/19 21:02:57 $
  5.  * $Revision: 1.1 $
  6.  * $State: Rel $
  7.  * $Author: simon $
  8.  *
  9.  * $Log: termcap,v $
  10.  * Revision 1.1  1996/04/19 21:02:57  simon
  11.  * Initial revision
  12.  *
  13.  ***************************************************************************/
  14.  
  15. #ifndef __TERMCAP_H
  16. #define __TERMCAP_H
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. extern char PC,*BC,*UP;
  23. extern short ospeed;
  24.  
  25. extern    int    tgetent(char *,char *);
  26. extern    int    tgetflag(char *);
  27. extern    int    tgetnum(char *);
  28. extern    char    *tgetstr(char *,char **);
  29. extern    char    *tgoto(char *,int,int);
  30. extern    int    tputs(char *,int,int ((*)(char)));
  31.  
  32. #ifdef __cplusplus
  33.     }
  34. #endif
  35.  
  36. #endif
  37.