blob: 0edc73b289763a3f7d2a8a5caf31939b50d6a349 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* 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_delwin.c
**
** The routine delwin().
**
*/
#include <stdlib.h>
#include "curses.priv.h"
int delwin(WINDOW *win)
{
int i;
T(("delwin(%x) called", win));
if (! (win->_flags & _SUBWIN)) {
for (i = 0; i < win->_maxy && win->_line[i]; i++)
free(win->_line[i]);
}
free(win->_firstchar);
free(win->_lastchar);
free(win->_line);
touchwin((win->_flags & _SUBWIN) ? win->_parent : curscr);
free(win);
return(OK);
}
|