home *** CD-ROM | disk | FTP | other *** search
- NAME
- raw() noraw() echo() noecho() cbreak() nocbreak() crmode() nocrmode()
- refrbrk() - set or unset screen flags
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- void raw()
-
- void noraw()
-
- void echo()
-
- void noecho()
-
- void nl()
-
- void nonl()
-
- void cbreak()
-
- void nocbreak()
-
- void crmode()
-
- void nocrmode()
-
- void refrbrk(bf)
- bool bf;
-
- DESCRIPTION
- raw() and noraw() sets or clears raw mode.
-
- echo() and noecho() sets or clears echo mode.
-
- cbreak(), nocbreak(), crmode() amd nocrmode() sets or clears
- cbreak mode.
-
- refrbrk() sets or unsets the screen refresh break flag. If
- this flag is set, and there is any input available, any
- screen refresh will be prematurely terminated, anticipating
- more screen updates. This flag is FALSE by default.
-
- EXAMPLES
-
- SEE ALSO
- _cursesscb(); flushinp()
-
- BUGS
-