Move the cursor to coordinates (y,x) and insert the character ch into the specified window. The mvinsch function acts on the stdscr window.
#include <curses.h> int mvinsch (int y, int x, char ch); int mvwinsch (WINDOW *win, int y, int x, char ch);
OK | Indicates success. |
ERR | Indicates that the function makes the screen scroll illegally. For more information, see the scrollok function in this section. |