 |
» |
|
|
|
The insch set of routines is used to insert a character. Syntax |  |
#include <curses.h>
int insch(chtype ch);
int winsch(WINDOW *win, chtype ch);
int mvinsch(int y, int x, chtype ch);
int mvwinsch(WINDOW *win, int y, int x, chtype ch);
|
Parameters |  |
- ch
The character to be inserted.
- win
A pointer to the window in which the character
is to be inserted.
- x
The x (column) coordinate of the position of the character.
- y
The y (row) coordinate of the position of the character.
Return Values |  |
- OK
Successful completion.
- ERR
An error occurred.
Implementation Considerations |  |
Identical to XPG/3 See Also |  |
delch(), insstr() Portability |  |
HP-UX, UNIX System V, XPG/3
|