xref: /csrg-svn/old/lib2648/set.c (revision 18784)
111492Sralph /*
2*18784Sdist  * Copyright (c) 1980 Regents of the University of California.
3*18784Sdist  * All rights reserved.  The Berkeley software License Agreement
4*18784Sdist  * specifies the terms and conditions for redistribution.
5*18784Sdist  */
6*18784Sdist 
7*18784Sdist #ifndef lint
8*18784Sdist static char sccsid[] = "@(#)set.c	5.1 (Berkeley) 04/26/85";
9*18784Sdist #endif not lint
10*18784Sdist 
11*18784Sdist /*
1211492Sralph  * Routines to set line type.
1311492Sralph  */
1411492Sralph 
1511492Sralph #include "2648.h"
1611492Sralph 
setxor()1711492Sralph setxor()
1811492Sralph {
1911492Sralph 	_supsmode = MX;
2011492Sralph }
2111492Sralph 
setclear()2211492Sralph setclear()
2311492Sralph {
2411492Sralph 	_supsmode = _video==INVERSE ? MS : MC;
2511492Sralph }
2611492Sralph 
setset()2711492Sralph setset()
2811492Sralph {
2911492Sralph 	_supsmode = _video==INVERSE ? MC : MS;
3011492Sralph }
31