home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8710 / pc-curses-doc / 2 / cbreak.m < prev    next >
Encoding:
Text File  |  1993-09-02  |  830 b   |  51 lines

  1. NAME
  2.     raw() noraw() echo() noecho() cbreak() nocbreak() crmode() nocrmode()
  3.     refrbrk() - set or unset screen flags
  4.  
  5. SYNOPSIS
  6.     #include <curses.h>
  7.     #include <curspriv.h>
  8.  
  9.     void raw()
  10.  
  11.     void noraw()
  12.  
  13.     void echo()
  14.  
  15.     void noecho()
  16.  
  17.     void nl()
  18.  
  19.     void nonl()
  20.  
  21.     void cbreak()
  22.  
  23.     void nocbreak()
  24.  
  25.     void crmode()
  26.  
  27.     void nocrmode()
  28.  
  29.     void refrbrk(bf)
  30.     bool bf;
  31.  
  32. DESCRIPTION
  33.     raw() and noraw() sets or clears raw mode.  
  34.  
  35.     echo() and noecho() sets or clears echo mode.  
  36.  
  37.     cbreak(), nocbreak(), crmode() amd nocrmode() sets or clears
  38.     cbreak mode.
  39.  
  40.     refrbrk() sets or unsets the screen refresh break flag. If  
  41.     this flag is set, and there is any input available, any  
  42.     screen refresh will be prematurely terminated, anticipating  
  43.     more screen updates. This flag is FALSE by default.  
  44.  
  45. EXAMPLES
  46.  
  47. SEE ALSO
  48.     _cursesscb(); flushinp()  
  49.  
  50. BUGS
  51.