1994-10-07 08:58:58 +00:00
|
|
|
|
|
|
|
/* 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"
|
1994-12-02 06:40:24 +00:00
|
|
|
#include "terminfo.h"
|
1994-10-07 08:58:58 +00:00
|
|
|
|
|
|
|
struct screen *
|
|
|
|
set_term(screen)
|
|
|
|
struct screen *screen;
|
|
|
|
{
|
|
|
|
struct screen *oldSP;
|
|
|
|
|
1994-12-02 06:40:24 +00:00
|
|
|
T(("set_term(%o) called", screen));
|
1994-10-07 08:58:58 +00:00
|
|
|
|
|
|
|
oldSP = SP;
|
|
|
|
SP = screen;
|
|
|
|
|
|
|
|
cur_term = SP->_term;
|
|
|
|
curscr = SP->_curscr;
|
|
|
|
newscr = SP->_newscr;
|
1994-12-02 06:40:24 +00:00
|
|
|
stdscr = SP->_stdscr;
|
1994-10-07 08:58:58 +00:00
|
|
|
|
|
|
|
return(oldSP);
|
|
|
|
}
|