source: trunk/minix/lib/curses/wclear.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 393 bytes
Line 
1#include <curses.h>
2#include "curspriv.h"
3
4/****************************************************************/
5/* Wclear() fills all lines of window 'win' with blanks, and */
6/* Marks the window to be cleared at next refresh operation. */
7/****************************************************************/
8
9void wclear(win)
10WINDOW *win;
11{
12 werase(win);
13 win->_clear = TRUE;
14} /* wclear */
Note: See TracBrowser for help on using the repository browser.