freebsd-dev/lib/libncurses/lib_set_term.c

34 lines
585 B
C
Raw Normal View History

/* 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"
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));
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;
return(oldSP);
}