standend, standout, wstandend, wstandout - set and clear window attributes
#include <curses.h> int standend(void); int standout(void); int wstandend(WINDOW *win); int wstandout(WINDOW *win);
The standend() and wstandend() functions turn off all attributes of the current or specified window.The standout() and wstandout() functions turn on the standout attribute of the current or specified window.
These functions always return 1.
No errors are defined.
attroff(), attr_get(), <curses.h>.