home *** CD-ROM | disk | FTP | other *** search
- NAME
- winch() inch() mvinch() mvwinch() - returns a character
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- int winch(win)
- WINDOW *win;
-
- int inch()
-
- int mvinch(y,x)
- int y;
- int x;
-
- int mvwinch(win,y,x)
- WINDOW *win;
- int y;
- int x;
-
- DESCRIPTION
- winch() returns the character at the current position in
- window 'win'.
-
- inch() returns the character at the current cursor position
- in stdscr.
-
- mvinch() moves the stdscr cursor to a new position, then
- returns the character at that position.
-
- mvwinch() moves the cursor of window 'win' to a new posi-
- tion, then returns the character at that position.
-
- EXAMPLES
-
- SEE ALSO
- wmove()
-
- BUGS
-