1 /* 2 * Copyright (c) 1981 Regents of the University of California. 3 * All rights reserved. 4 * 5 * %sccs.include.redist.c% 6 */ 7 8 #ifndef lint 9 static char sccsid[] = "@(#)clear.c 5.4 (Berkeley) 06/01/90"; 10 #endif /* not lint */ 11 12 # include "curses.ext" 13 14 /* 15 * This routine clears the window. 16 * 17 */ 18 wclear(win) 19 reg WINDOW *win; { 20 21 werase(win); 22 win->_clear = TRUE; 23 return OK; 24 } 25