diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1999-08-30 07:58:08 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1999-08-30 07:58:08 +0000 |
| commit | 99af2e21c73f07587da16d34eb6795f4a46cc5be (patch) | |
| tree | 5df591f7e443330146099aa76e2f474a81669ebf /lib/libncurses/lib_insch.c | |
| parent | 02e1576966f0a3b9300a7269c3e6894e62b1f3ba (diff) | |
Notes
Diffstat (limited to 'lib/libncurses/lib_insch.c')
| -rw-r--r-- | lib/libncurses/lib_insch.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/lib/libncurses/lib_insch.c b/lib/libncurses/lib_insch.c deleted file mode 100644 index ff306682659a..000000000000 --- a/lib/libncurses/lib_insch.c +++ /dev/null @@ -1,36 +0,0 @@ - -/* 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_insch.c -** -** The routine winsch(). -** -*/ - -#include "curses.priv.h" - -int winsch(WINDOW *win, chtype c) -{ -chtype *temp1, *temp2; -chtype *end; - - T(("winsch(%x,'%x') called", win, c)); - - end = &win->_line[win->_cury][win->_curx]; - temp1 = &win->_line[win->_cury][win->_maxx]; - temp2 = temp1 - 1; - - while (temp1 > end) - *temp1-- = *temp2--; - - *temp1 = _nc_render(win, c); - - win->_lastchar[win->_cury] = win->_maxx; - if (win->_firstchar[win->_cury] == _NOCHANGE - || win->_firstchar[win->_cury] > win->_curx) - win->_firstchar[win->_cury] = win->_curx; - return OK; -} |
