source:
trunk/minix/lib/curses/wclear.c@
9
| Last change on this file since 9 was 9, checked in by , 15 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.