Copies blank spaces to every position in a window.
Curses Library (libcurses.a)
#include <curses.h>
erase( )
werase( Window)
WINDOW *Window;
The erase and werase subroutines copy blank spaces to every position in the specified window. Use the erase subroutine with the stdscr and the werase subroutine with user-defined windows.
Window | Specifies the window to erase. |
erase();
WINDOW *my_window; werase(my_window);
Curses Overview for Programming in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
List of Curses Subroutines in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
Manipulating Characters with Curses in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.