home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / emx / include / termcap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-18  |  605 b   |  30 lines

  1. /* GNU termcap */
  2.  
  3. /* Work-alike for termcap, plus extra features.
  4.    Copyright (C) 1985, 1986 Free Software Foundation, Inc. */
  5.  
  6. /* see termcap.c for WARRANTY and LICENSE */
  7.  
  8. #if defined (__cplusplus)
  9. extern "C" {
  10. #endif
  11.  
  12. extern short ospeed;
  13. extern char PC;
  14.  
  15. #if defined(M_I86CM) || defined(M_I86LM)
  16. long tgetent (char *bp, char *name);
  17. #else
  18. int tgetent (char *bp, char *name);
  19. #endif
  20.  
  21. int tgetnum (char *cap);
  22. int tgetflag (char *cap);
  23. char *tgetstr (char *cap, char **area);
  24.  
  25. void tputs (char *string, int nlines, int (*outfun)(int));
  26.  
  27. #if defined (__cplusplus)
  28. }
  29. #endif
  30.