X-Git-Url: https://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fresizeterm.3x.html;h=a3dc5d3b4261366495c1e52b4887f3fabe73a6a7;hb=3b56f70388c2ae65421ff54b45be77a479e79aea;hp=b19559d9982eabaa54bb2eafa0df81bb0e17ee1e;hpb=3e91848cbe3dad23fdb60962fa9b678592591c34;p=ncurses.git diff --git a/doc/html/man/resizeterm.3x.html b/doc/html/man/resizeterm.3x.html index b19559d9..a3dc5d3b 100644 --- a/doc/html/man/resizeterm.3x.html +++ b/doc/html/man/resizeterm.3x.html @@ -1,6 +1,6 @@ - @@ -37,7 +37,7 @@ resizeterm 3x - +

resizeterm 3x

@@ -55,15 +55,15 @@

SYNOPSIS

        #include <curses.h>
 
-       bool is_term_resized(int lines, int columns);
-       int resize_term(int lines, int columns);
-       int resizeterm(int lines, int columns);
+       bool is_term_resized(int lines, int columns);
+       int resize_term(int lines, int columns);
+       int resizeterm(int lines, int columns);
 
 
 

DESCRIPTION

        This is an extension to the curses library.  It provides callers with a
-       hook into the ncurses data to resize windows, primarily for use by pro-
-       grams running in an X Window terminal (e.g., xterm).
+       hook  into  the  ncurses  data  to resize windows, primarily for use by
+       programs running in an X Window terminal (e.g., xterm).
 
 
 

resizeterm

@@ -102,15 +102,15 @@
 

RETURN VALUE

        Except  as  noted,  these functions return the integer ERR upon failure
        and OK on success.  They will fail if either of the dimensions are less
-       than  or equal to zero, or if an error occurs while (re)allocating mem-
-       ory for the windows.
+       than  or  equal  to  zero,  or  if an error occurs while (re)allocating
+       memory for the windows.
 
 
 

NOTES

-       While these functions are intended to be used to support a signal  han-
-       dler  (i.e., for SIGWINCH), care should be taken to avoid invoking them
-       in a context where malloc or realloc may have been  interrupted,  since
-       it uses those functions.
+       While these functions are intended to  be  used  to  support  a  signal
+       handler  (i.e.,  for  SIGWINCH), care should be taken to avoid invoking
+       them in a context where malloc or realloc may  have  been  interrupted,
+       since it uses those functions.
 
        If ncurses is configured to supply its own SIGWINCH handler,
 
@@ -132,9 +132,9 @@
            resize the ncurses data structures.
 
        If the environment variables LINES or COLUMNS are set,  this  overrides
-       the  library's  use of the window size obtained from the operating sys-
-       tem.  Thus, even if a SIGWINCH is received, no screen size  change  may
-       be recorded.
+       the  library's  use  of  the  window  size  obtained from the operating
+       system.  Thus, even if a SIGWINCH is received, no  screen  size  change
+       may be recorded.
 
 
 

PORTABILITY