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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1993-09-02
|
335 b
|
27 lines
NAME
wmove() move() - move the cursor
SYNOPSIS
#include <curses.h>
#include <curspriv.h>
int wmove(win,y,x)
WINDOW *win;
int y;
int x;
int move(y,x)
int y;
int x;
DESCRIPTION
wmove() moves the cursor in window 'win' to position (x,y).
move() moves the cursor in stdscr to position (x,y).
EXAMPLES
SEE ALSO
BUGS