home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 419b.lha / TERMLIB / termlib.h < prev    next >
C/C++ Source or Header  |  1990-10-05  |  644b  |  29 lines

  1. /* TERMLIB: Terminal independant database.
  2.  *
  3.  * Module: termlib.h
  4.  *
  5.  * Purpose: declare global variables and functions.
  6.  */
  7.  
  8. /* termlib.h
  9.  * Global variables for termlib
  10.  *
  11. */
  12. #ifndef AMIGA
  13. #define AMIGA 0
  14. #endif
  15.  
  16. extern char *tent;             /* Pointer to terminal entry, set by tgetent */
  17. extern char PC;                              /* Pad character, default NULL */
  18. extern char *UP, *BC;        /* Pointers to UP and BC strings from database */
  19. extern short ospeed;       /* Baud rate (1-16, 1=300, 16=19200), as in stty */
  20.  
  21. int tgetnum();
  22. char *tgoto();
  23. int tgetent();
  24. int tgetflag();
  25. char *tgetstr();
  26.  
  27. char *_find();
  28. char *_addfmt();
  29.