xref: /csrg-svn/lib/libplot/bitgraph/erase.c (revision 61330)
148504Sbostic /*-
2*61330Sbostic  * Copyright (c) 1980, 1993
3*61330Sbostic  *	The Regents of the University of California.  All rights reserved.
448504Sbostic  *
548504Sbostic  * %sccs.include.proprietary.c%
619851Sdist  */
719851Sdist 
815416Sralph #ifndef lint
9*61330Sbostic static char sccsid[] = "@(#)erase.c	8.1 (Berkeley) 06/04/93";
1048504Sbostic #endif /* not lint */
1115416Sralph 
1215416Sralph #include "bg.h"
1315416Sralph 
erase()1415416Sralph erase()
1515416Sralph {
1615416Sralph 	putchar( ESC );
1715416Sralph 	printf("[H");
1815416Sralph 	putchar( ESC );
1915416Sralph 	printf("[J");
2015416Sralph }
21