Activate the boldface attribute of the specified window. The
standout function acts on the stdscr window.
Format
#include <curses.h>
int standout (void);
int wstandout (WINDOW *win);
Argument
- win
- A pointer to the window.
Description
The standout and wstandout functions are equivalent to setattr
and wsetattr called with the attribute _BOLD.
Return Values
OK | Indicates success. |
ERR | Indicates an error. |
Previous Page | Next Page | Table of Contents | Index