Lines Matching refs:win
33 wdeleteln(WINDOW *win) in wdeleteln() argument
40 fprintf(outf, "DELETELN(%0.2o)\n", win); in wdeleteln()
42 temp = win->_y[win->_cury]; in wdeleteln()
43 for (y = win->_cury; y < win->_maxy - 1; y++) { in wdeleteln()
44 if (win->_orig == NULL) in wdeleteln()
45 win->_y[y] = win->_y[y + 1]; in wdeleteln()
47 (void) memmove(win->_y[y], win->_y[y+1], win->_maxx); in wdeleteln()
48 (void) touchline(win, y, 0, win->_maxx - 1); in wdeleteln()
50 if (win->_orig == NULL) in wdeleteln()
51 win->_y[y] = temp; in wdeleteln()
53 temp = win->_y[y]; in wdeleteln()
54 for (end = &temp[win->_maxx]; temp < end; ) in wdeleteln()
56 (void) touchline(win, y, 0, win->_maxx - 1); in wdeleteln()
57 if (win->_orig == NULL) in wdeleteln()
58 _id_subwins(win); in wdeleteln()