#include <curses.h>
int clear(void);
int erase(void);
int wclear(WINDOW *win);
int werase(WINDOW *win);
The clear, erase, wclear, and werase subroutines clear every position in the current or specified window.
The clear and wclear subroutines also achieve the same effect as calling the clearok subroutine, so that the window is cleared completely on the next call to the wrefresh subroutine for the window and is redrawn in its entirety.
*win | Specifies the window to clear. |
Upon successful completion, these subroutines return OK. Otherwise, they return ERR.
For the clear and wclear subroutines:
clear();
WINDOW *my_window; wclear(my_window); waddstr (my_window, "This will be cleared."); wrefresh (my_window);
erase();
WINDOW *my_window; werase (my_window);
Note: After the wrefresh, the window will be cleared completely. You will not see the string "This will be cleared."
For the erase and werase subroutines:
erase();
WINDOW *my_window; werase(my_window);
These subroutines are part of Base Operating System (BOS) Runtime.
The doupdate subroutine, erase and werase subroutines, clearok subroutine, refresh subroutine.
Curses Overview for Programming, List of Curses Subroutines, Manipulating Characters with Curses in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.