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

  1. NAME
  2.     wmove() move() - move the cursor
  3.  
  4. SYNOPSIS
  5.     #include <curses.h>
  6.     #include <curspriv.h>
  7.  
  8.     int wmove(win,y,x)
  9.     WINDOW *win;
  10.     int y;
  11.     int x;
  12.  
  13.     int move(y,x)
  14.     int y;
  15.     int x;
  16.  
  17. DESCRIPTION
  18.     wmove() moves the cursor in window 'win' to position (x,y).  
  19.  
  20.     move() moves the cursor in stdscr to position (x,y).  
  21.  
  22. EXAMPLES
  23.  
  24. SEE ALSO
  25.  
  26. BUGS
  27.