xref: /csrg-svn/lib/libplot/dumb/erase.c (revision 61352)
148505Sbostic /*-
2*61352Sbostic  * Copyright (c) 1980, 1993
3*61352Sbostic  *	The Regents of the University of California.  All rights reserved.
448505Sbostic  *
548505Sbostic  * %sccs.include.proprietary.c%
619971Sdist  */
719971Sdist 
815434Sralph #ifndef lint
9*61352Sbostic static char sccsid[] = "@(#)erase.c	8.1 (Berkeley) 06/04/93";
1048505Sbostic #endif /* not lint */
1115434Sralph 
1215434Sralph #include "dumb.h"
1315434Sralph 
erase()1415434Sralph erase()
1515434Sralph {
1615434Sralph 	register int i, j;
1715434Sralph 
1815434Sralph 	for(i=0;i<COLS;i++)
1915434Sralph 		for(j=0;j<LINES;j++)
2015434Sralph 			screenmat[i][j] = ' ';
2115434Sralph }
22