blob: bc73ca3353600ed661e2856a8ab5834ae50f8954 (
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
|
/* 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_set_term.c
**
** The routine set_term().
**
*/
#include "curses.priv.h"
#include "terminfo.h"
struct screen *
set_term(screen)
struct screen *screen;
{
struct screen *oldSP;
T(("set_term(%o) called", screen));
oldSP = SP;
SP = screen;
cur_term = SP->_term;
curscr = SP->_curscr;
newscr = SP->_newscr;
stdscr = SP->_stdscr;
return(oldSP);
}
|