home *** CD-ROM | disk | FTP | other *** search
- NAME
- winsch() insch() mvinsch() mvwinsch() - insert a character
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- int winsch(win, c)
- WINDOW *win;
- char c;
-
- int insch(c)
- char c;
-
- int mvinsch(y,x,c)
- int y;
- int x;
- char c;
-
- int mvwinsch(win,y,x,c)
- WINDOW *win;
- int y;
- int x;
- char c;
-
- DESCRIPTION
- winsch() inserts character 'c' at the cursor position in
- window 'win'. The cursor is advanced.
-
- insch() inserts character 'c' at the cursor position in
- stdscr. The cursor is advanced.
-
- mvinsch() moves the stdscr cursor to a new position, then
- inserts character 'c' at the cursor position in stdscr. The
- cursor is advanced.
-
- mvwinsch() moves the cursor of window 'win' to a new posi-
- tion, then inserts character 'c' at the cursor position in
- window 'win'. The cursor is advanced.
-
- EXAMPLES
-
- SEE ALSO
- waddch(), wmove()
-
- BUGS
-