X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_legacy.3x.html;h=181060cb5865fd89a34bd5e8a41d3865a4e14138;hp=24071db7fb76abfd3a5235e3aac4da27f44f7510;hb=f6b436c4fb50275df43ea10ba9c744fe195a327d;hpb=47d2fb4537d9ad5bb14f4810561a327930ca4280 diff --git a/doc/html/man/curs_legacy.3x.html b/doc/html/man/curs_legacy.3x.html index 24071db7..181060cb 100644 --- a/doc/html/man/curs_legacy.3x.html +++ b/doc/html/man/curs_legacy.3x.html @@ -1,4 +1,4 @@ - @@ -53,20 +53,24 @@

SYNOPSIS

        #include <curses.h>
 
-       int getattrs(const WINDOW *win);
-       int getbegx(const WINDOW *win);
-       int getbegy(const WINDOW *win);
-       int getcurx(const WINDOW *win);
-       int getcury(const WINDOW *win);
-       int getmaxx(const WINDOW *win);
-       int getmaxy(const WINDOW *win);
-       int getparx(const WINDOW *win);
-       int getpary(const WINDOW *win);
+       int getattrs(const WINDOW *win);
+
+       int getbegx(const WINDOW *win);
+       int getbegy(const WINDOW *win);
+
+       int getcurx(const WINDOW *win);
+       int getcury(const WINDOW *win);
+
+       int getmaxx(const WINDOW *win);
+       int getmaxy(const WINDOW *win);
+
+       int getparx(const WINDOW *win);
+       int getpary(const WINDOW *win);
 
 
 

DESCRIPTION

-       These  legacy functions are simpler to use than the X/Open Curses func-
-       tions:
+       These  legacy  functions  are  simpler  to  use  than the X/Open Curses
+       functions:
 
        o   The getattrs function returns the same attribute data as wattr_get.
 
@@ -91,8 +95,8 @@
 
 
 

RETURN VALUE

-       Except  as noted, these functions return an integer, or ERR if the win-
-       dow parameter is null.
+       Except  as  noted,  these  functions  return  an integer, or ERR if the
+       window parameter is null.
 
 
 

NOTES

@@ -105,12 +109,13 @@
 
 
 

PORTABILITY

-       These  functions were supported on Version 7, BSD or System V implemen-
-       tations.  None of those implementations checked the window parameter.
+       These   functions  were  supported  on  Version  7,  BSD  or  System  V
+       implementations.  None of  those  implementations  checked  the  window
+       parameter.
 
-       The getattrs function and macro are defined to return a (signed)  inte-
-       ger  for  compatibility with those implementations although an unsigned
-       type would have been more appropriate.
+       The  getattrs  function  and  macro  are  defined  to return a (signed)
+       integer  for  compatibility  with  those  implementations  although  an
+       unsigned type would have been more appropriate.
 
 
 

SEE ALSO