X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_move.3x.html;h=7b9336019a8212cf36b7471e21e3c28c61db0aa4;hp=fcdbd402f56638e04f084219695e0ddc307ac557;hb=HEAD;hpb=e5d1530ca229aef94a3c84ad33f8ae89f35c4045 diff --git a/doc/html/man/curs_move.3x.html b/doc/html/man/curs_move.3x.html index fcdbd402..bbab2b87 100644 --- a/doc/html/man/curs_move.3x.html +++ b/doc/html/man/curs_move.3x.html @@ -1,6 +1,6 @@ - -curs_move 3x +curs_move 3x 2024-04-27 ncurses 6.5 Library calls - + -

curs_move 3x

+

curs_move 3x 2024-04-27 ncurses 6.5 Library calls

-curs_move(3x)                                                    curs_move(3x)
+curs_move(3x)                    Library calls                   curs_move(3x)
 
 
 
 
 

NAME

-       move, wmove - move curses window cursor
+       move, wmove - move cursor in a curses window
 
 
 

SYNOPSIS

        #include <curses.h>
 
-       int move(int y, int x);
-       int wmove(WINDOW *win, int y, int x);
+       int move(int y, int x);
+       int wmove(WINDOW *win, int y, int x);
 
 
 

DESCRIPTION

-       These routines move the cursor associated with the window to line y and
-       column x.  This routine does not move the physical cursor of the termi-
-       nal until refresh(3x) is called.  The position specified is relative to
-       the upper left-hand corner of the window, which is (0,0).
+       wmove  relocates  the  cursor  associated with the curses window win to
+       line y and column  x.   The  terminal's  cursor  does  not  move  until
+       refresh(3x)  is  called.   The position (y, x) is relative to the upper
+       left-hand  corner  of  the  window,  which  has   coordinates   (0, 0).
+       ncurses(3x) describes the move variant of this function.
 
 
 

RETURN VALUE

-       These routines return ERR upon failure and OK (SVr4 specifies only  "an
-       integer value other than ERR") upon successful completion.
+       These functions return OK on success and ERR on failure.
+
+       They fail if the position (y, x) is outside the window boundaries.
 
-       Specifically, they return an error if the window pointer is null, or if
-       the position is outside the window.
+       wmove fails if its WINDOW pointer argument is NULL.
 
 
 

NOTES

-       Note that move may be a macro.
+       move may be implemented as a macro.
 
 
 

PORTABILITY

-       These functions are described in the XSI Curses standard, Issue 4.
+       X/Open Curses, Issue 4 describes these functions.
 
 
 

SEE ALSO

@@ -85,7 +86,7 @@
 
 
 
-                                                                 curs_move(3x)
+ncurses 6.5                       2024-04-27                     curs_move(3x)