home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / OS2 / gnuinfo.zip / lib / termcap.h < prev    next >
C/C++ Source or Header  |  1997-11-15  |  677b  |  26 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. extern short ospeed;
  9. extern char PC, *BC;
  10.  
  11. #if defined(M_I86CM) || defined(M_I86LM)
  12. long tgetent (char *bp, char *name);
  13. #else
  14. int tgetent (char *bp, char *name);
  15. #endif
  16.  
  17. int tgetnum (char *cap);
  18. int tgetflag (char *cap);
  19. char *tgetstr (char *cap, char **area);
  20.  
  21. void tputs (char *string, int nlines, int (*outfun)(int));
  22.  
  23. char *tgoto (char *cm, int hpos, int vpos);
  24. char *tparam (char *string, char *outstring, int len,
  25.               int arg0, int arg1, int arg2, int arg3);
  26.