home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixlib36d / clib / h / termcap < prev    next >
Text File  |  1994-02-26  |  422b  |  25 lines

  1. /* termcap.h (c) Copyright 1990 H.Rogers */
  2.  
  3. #ifndef __TERMCAP_H
  4. #define __TERMCAP_H
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. extern char PC,*BC,*UP;
  11. extern short ospeed;
  12.  
  13. extern    int    tgetent(char *,char *);
  14. extern    int    tgetflag(char *);
  15. extern    int    tgetnum(char *);
  16. extern    char    *tgetstr(char *,char **);
  17. extern    char    *tgoto(char *,int,int);
  18. extern    int    tputs(char *,int,int ((*)(char)));
  19.  
  20. #ifdef __cplusplus
  21.     }
  22. #endif
  23.  
  24. #endif
  25.