diff options
author | ache <ache@FreeBSD.org> | 1994-10-07 08:58:58 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-10-07 08:58:58 +0000 |
commit | a80c0624fbd8bd1c784b0b5b7a0fd20b09d317b9 (patch) | |
tree | 4a94ca97fb2fc2fdc1fcdd522a66e39c6e763138 /lib/libncurses/lib_endwin.c | |
download | FreeBSD-src-a80c0624fbd8bd1c784b0b5b7a0fd20b09d317b9.zip FreeBSD-src-a80c0624fbd8bd1c784b0b5b7a0fd20b09d317b9.tar.gz |
Moved from ports with several enhancements
Diffstat (limited to 'lib/libncurses/lib_endwin.c')
-rw-r--r-- | lib/libncurses/lib_endwin.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/libncurses/lib_endwin.c b/lib/libncurses/lib_endwin.c new file mode 100644 index 0000000..b32af2d --- /dev/null +++ b/lib/libncurses/lib_endwin.c @@ -0,0 +1,44 @@ + +/* This work is copyrighted. See COPYRIGHT.OLD & COPYRIGHT.NEW for * +* details. If they are missing then this copy is in violation of * +* the copyright conditions. */ + +/* +** lib_endwin.c +** +** The routine endwin(). +** +*/ + +#include <nterm.h> +#include "curses.priv.h" + +int _isendwin; + +int isendwin() +{ + return _isendwin; +} + +int +endwin() +{ + T(("endwin() called")); + + _isendwin = 1; + + mvcur(-1, -1, lines - 1, 0); + + if (exit_ca_mode) + tputs(exit_ca_mode, 1, _outc); + + if (_coloron == 1) + tputs(orig_pair, 1, _outc); + + if (curscr && (curscr->_attrs != A_NORMAL)) + vidattr(curscr->_attrs = A_NORMAL); + + fflush(SP->_ofp); + + return(reset_shell_mode()); +} |