/* * Copyright (c) 1981, 1993, 1994 * The Regents of the University of California. All rights reserved. * * %sccs.include.redist.c% */ #ifndef lint static char sccsid[] = "@(#)clear.c 8.2 (Berkeley) 05/04/94"; #endif /* not lint */ #include "curses.h" /* * wclear -- * Clear the window. */ int wclear(win) register WINDOW *win; { if (werase(win) == OK) { win->flags |= __CLEAROK; return (OK); } return (ERR); }