source:
trunk/minix/lib/curses/wclear.c@
10
Last change on this file since 10 was 9, checked in by , 14 years ago | |
---|---|
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 | |
9 | void wclear(win) |
10 | WINDOW *win; |
11 | { |
12 | werase(win); |
13 | win->_clear = TRUE; |
14 | } /* wclear */ |
Note:
See TracBrowser
for help on using the repository browser.