|
X/Open Curses Library Functions | curs_set(3XCURSES) |
| curs_set - set visibility of cursor |
SYNOPSIS
|
#include <curses.h> int curs_set(int visibility); |
|
The curs_set() function sets the visibility of the cursor to invisible (0), normal (1), or very visible (2). The exact appearance of normal and very visible cursors is terminal
dependent.
|
|
-
visibility
- Is a value of 0 (invisible), 1 (normal), or 2 (very visible).
|
|
If the terminal supports the mode specified by the visibility parameter, the curs_set() function returns the previous cursor state. Otherwise, it returns ERR.
|
| |