summaryrefslogtreecommitdiffstats
path: root/lib/libncurses/lib_inchstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libncurses/lib_inchstr.c')
-rw-r--r--lib/libncurses/lib_inchstr.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/lib/libncurses/lib_inchstr.c b/lib/libncurses/lib_inchstr.c
deleted file mode 100644
index d0ad351..0000000
--- a/lib/libncurses/lib_inchstr.c
+++ /dev/null
@@ -1,29 +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_inchstr.c
-**
-** The routine winchnstr().
-**
-*/
-
-#include "curses.priv.h"
-
-int winchnstr(WINDOW *win, chtype *chstr, int i)
-{
-chtype *point, *end;
-
- T(("winschnstr(%x,'%x',%d) called", win, chstr, i));
-
- point = &win->_line[win->_cury][win->_curx];
- end = &win->_line[win->_cury][win->_maxx];
- if (point + i - 1 < end)
- end = point + i - 1;
-
- chstr = (chtype *)malloc((end - point + 1)*sizeof(chtype));
- chstr[end - point] = '\0';
- return OK;
-}
OpenPOWER on IntegriCloud