| 
|  | » |  | 
 |  | 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 |  |  | 
chThe character to be inserted.
winA pointer to the window in which the character
is to be inserted.
xThe x (column) coordinate of the position of the character.
yThe 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 |