summaryrefslogtreecommitdiffstats
path: root/lib/libncurses/lib_delch.c
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1994-10-07 08:58:58 +0000
committerache <ache@FreeBSD.org>1994-10-07 08:58:58 +0000
commita80c0624fbd8bd1c784b0b5b7a0fd20b09d317b9 (patch)
tree4a94ca97fb2fc2fdc1fcdd522a66e39c6e763138 /lib/libncurses/lib_delch.c
downloadFreeBSD-src-a80c0624fbd8bd1c784b0b5b7a0fd20b09d317b9.zip
FreeBSD-src-a80c0624fbd8bd1c784b0b5b7a0fd20b09d317b9.tar.gz
Moved from ports with several enhancements
Diffstat (limited to 'lib/libncurses/lib_delch.c')
-rw-r--r--lib/libncurses/lib_delch.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/lib/libncurses/lib_delch.c b/lib/libncurses/lib_delch.c
new file mode 100644
index 0000000..5c62acb
--- /dev/null
+++ b/lib/libncurses/lib_delch.c
@@ -0,0 +1,38 @@
+
+/* 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_delch.c
+**
+** The routine wdelch().
+**
+*/
+
+#include "curses.priv.h"
+#include <nterm.h>
+
+int wdelch(WINDOW *win)
+{
+chtype *temp1, *temp2;
+chtype *end;
+
+ T(("wdelch(%x) called", win));
+
+ end = &win->_line[win->_cury][win->_maxx];
+ temp2 = &win->_line[win->_cury][win->_curx + 1];
+ temp1 = temp2 - 1;
+
+ while (temp1 < end)
+ *temp1++ = *temp2++;
+
+ *temp1 = ' ' | win->_attrs;
+
+ 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;
+}
OpenPOWER on IntegriCloud