Lines Matching refs:Ntemp
1492 WINDOW *Ntemp; local
1496 Ntemp = (WINDOW *) malloc(sizeof(WINDOW));
1497 Ntemp->SR = start_l;
1498 Ntemp->SC = start_c;
1499 Ntemp->Num_lines = lines;
1500 Ntemp->Num_cols = cols;
1501 Ntemp->LX = 0;
1502 Ntemp->LY = 0;
1503 Ntemp->scroll_down = Ntemp->scroll_up = 0;
1504 Ntemp->SCROLL_CLEAR = FALSE;
1505 Ntemp->Attrib = FALSE;
1506 Ntemp->first_line = temp_screen = Screenalloc(cols);
1507 Ntemp->first_line->number = 0;
1508 Ntemp->line_array = (struct _line **) malloc(LINES * sizeof(struct _line *));
1510 Ntemp->line_array[0] = Ntemp->first_line;
1518 Ntemp->line_array[i] = temp_screen;
1520 Ntemp->first_line->prev_screen = NULL;
1522 return(Ntemp);