source:
trunk/minix/lib/curses/wclear.c@
11
| Last change on this file since 11 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 393 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 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.