Turns on specified attributes.
Curses Library (libcurses.a)
#include <curses.h>
The attron and wattron subroutines turn on specified attributes without affecting any others. The attron subroutine turns the specified attributes on in stdscr. The wattron subroutine turns the specified attributes on in the specified window.
Attributes | Specifies which attributes to turn on. |
Window | Specifies the window in which to turn on the specified attributes. |
attron(A_UNDERLINE);
wattron(my_window, A_UNDERLINE);
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.
Setting Video Attributes and Curses Options in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.