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