home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8710 / pc-curses-doc / 3 / inch.m < prev    next >
Encoding:
Text File  |  1993-09-02  |  673 b   |  41 lines

  1. NAME
  2.     winch() inch() mvinch() mvwinch() - returns a character 
  3.  
  4. SYNOPSIS
  5.     #include <curses.h>
  6.     #include <curspriv.h>
  7.  
  8.     int winch(win)
  9.     WINDOW *win;
  10.  
  11.     int inch()
  12.  
  13.     int mvinch(y,x)
  14.     int y;
  15.     int x;
  16.  
  17.     int mvwinch(win,y,x)
  18.     WINDOW *win;
  19.     int y;
  20.     int x;
  21.  
  22. DESCRIPTION
  23.     winch() returns the character at the current position in  
  24.     window 'win'.  
  25.  
  26.     inch() returns the character at the current cursor position  
  27.     in stdscr.  
  28.  
  29.     mvinch() moves the stdscr cursor to a new position, then  
  30.     returns the character at that position.  
  31.  
  32.     mvwinch() moves the cursor of window 'win' to a new posi-  
  33.     tion, then returns the character at that position.  
  34.  
  35. EXAMPLES
  36.  
  37. SEE ALSO
  38.     wmove()  
  39.  
  40. BUGS
  41.