]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - doc/html/man/curs_printw.3x.html
ncurses 6.4 - patch 20230917
[ncurses.git] / doc / html / man / curs_printw.3x.html
index a9a490e515d5b1153d12606acce88ade4349f313..dfd7d6193364958366f7e3b6bf1a249a50be2b1e 100644 (file)
@@ -1,6 +1,6 @@
 <!--
   ****************************************************************************
-  * Copyright 2018-2021,2022 Thomas E. Dickey                                *
+  * Copyright 2018-2022,2023 Thomas E. Dickey                                *
   * Copyright 1998-2010,2017 Free Software Foundation, Inc.                  *
   *                                                                          *
   * Permission is hereby granted, free of charge, to any person obtaining a  *
   * sale, use or other dealings in this Software without prior written       *
   * authorization.                                                           *
   ****************************************************************************
-  * @Id: curs_printw.3x,v 1.33 2022/02/12 20:05:11 tom Exp @
+  * @Id: curs_printw.3x,v 1.38 2023/09/16 23:37:03 tom Exp @
 -->
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
 <HTML>
 <HEAD>
 <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
 <meta name="generator" content="Manpage converted by man2html - see https://invisible-island.net/scripts/readme.html#others_scripts">
-<TITLE>curs_printw 3x 2022-02-12 ncurses 6.4 Library calls</TITLE>
+<TITLE>curs_printw 3x 2023-09-16 ncurses 6.4 Library calls</TITLE>
 <link rel="author" href="mailto:bug-ncurses@gnu.org">
 
 </HEAD>
 <BODY>
-<H1 class="no-header">curs_printw 3x 2022-02-12 ncurses 6.4 Library calls</H1>
+<H1 class="no-header">curs_printw 3x 2023-09-16 ncurses 6.4 Library calls</H1>
 <PRE>
 <STRONG><A HREF="curs_printw.3x.html">curs_printw(3x)</A></STRONG>                  Library calls                 <STRONG><A HREF="curs_printw.3x.html">curs_printw(3x)</A></STRONG>
 
@@ -47,8 +47,8 @@
 
 
 </PRE><H2><a name="h2-NAME">NAME</a></H2><PRE>
-       <STRONG>printw</STRONG>, <STRONG>wprintw</STRONG>, <STRONG>mvprintw</STRONG>, <STRONG>mvwprintw</STRONG>, <STRONG>vwprintw</STRONG>, <STRONG>vw_printw</STRONG> - print
-       formatted output in <STRONG>curses</STRONG> windows
+       <STRONG>printw</STRONG>,  <STRONG>wprintw</STRONG>,  <STRONG>mvprintw</STRONG>,  <STRONG>mvwprintw</STRONG>,  <STRONG>vwprintw</STRONG>,  <STRONG>vw_printw</STRONG>  - write
+       formatted output to <EM>curses</EM> windows
 
 
 </PRE><H2><a name="h2-SYNOPSIS">SYNOPSIS</a></H2><PRE>
 </PRE><H2><a name="h2-DESCRIPTION">DESCRIPTION</a></H2><PRE>
        The <STRONG>printw</STRONG>, <STRONG>wprintw</STRONG>, <STRONG>mvprintw</STRONG> and <STRONG>mvwprintw</STRONG> routines are  analogous  to
        <STRONG>printf</STRONG>  [see <STRONG>printf(3)</STRONG>].  In effect, the string that would be output by
-       <STRONG>printf</STRONG> is output instead as though <STRONG>waddstr</STRONG> were used on the given  win-
-       dow.
+       <STRONG>printf</STRONG> is output instead as though  <STRONG>waddstr</STRONG>  were  used  on  the  given
+       window.
 
        The  <STRONG>vwprintw</STRONG>  and  <STRONG>vw_printw</STRONG>  routines  are  analogous to <STRONG>vprintf</STRONG> [see
        <STRONG>printf(3)</STRONG>] and perform a <STRONG>wprintw</STRONG> using a variable argument  list.   The
-       third  argument  is a <STRONG>va_list</STRONG>, a pointer to a list of arguments, as de-
-       fined in <STRONG>&lt;stdarg.h&gt;</STRONG>.
+       third  argument  is  a  <STRONG>va_list</STRONG>,  a  pointer to a list of arguments, as
+       defined in <STRONG>&lt;stdarg.h&gt;</STRONG>.
 
 
 </PRE><H2><a name="h2-RETURN-VALUE">RETURN VALUE</a></H2><PRE>
        Routines that return an integer return <STRONG>ERR</STRONG> upon failure  and  <STRONG>OK</STRONG>  (SVr4
-       only  specifies "an integer value other than <STRONG>ERR</STRONG>") upon successful com-
-       pletion.
+       only  specifies  "an  integer  value  other  than <STRONG>ERR</STRONG>") upon successful
+       completion.
 
        X/Open defines no error conditions.  In this implementation,  an  error
        may be returned if it cannot allocate enough memory for the buffer used
@@ -97,9 +97,9 @@
        standard.   It  did not use &lt;varargs.h&gt;, though that was available.  In
        1991 (a couple of years after SVr4 was generally available,  and  after
        the  C  standard  was published), other developers updated the library,
-       using &lt;stdarg.h&gt; internally in 4.4BSD curses.  Even with this  improve-
-       ment, BSD curses did not use function prototypes (or even declare func-
-       tions) in the &lt;curses.h&gt; header until 1992.
+       using  &lt;stdarg.h&gt;  internally  in  4.4BSD  curses.   Even   with   this
+       improvement,  BSD  curses  did  not  use  function  prototypes (or even
+       declare functions) in the &lt;curses.h&gt; header until 1992.
 
        SVr2 documented <STRONG>printw</STRONG>, <STRONG>wprintw</STRONG>  tersely  as  "printf  on  <EM>stdscr</EM>"  and
        tersely as "printf on <EM>win</EM>", respectively.
        SVr3  added  <STRONG>mvprintw</STRONG>,  and <STRONG>mvwprintw</STRONG>, with a three-line summary saying
        that they were analogous to <STRONG>printf(3)</STRONG>, explaining that the string which
        would be output from <STRONG>printf(3)</STRONG> would instead be output using <STRONG>waddstr</STRONG> on
-       the given window.  SVr3 also added <STRONG>vwprintw</STRONG>, saying that the third  pa-
-       rameter  is a <STRONG>va_list</STRONG>, defined in &lt;varargs.h&gt;, and referring the reader
-       to the manual pages for <EM>varargs</EM> and <STRONG>vprintf</STRONG> for detailed descriptions.
+       the given window.  SVr3 also added  <STRONG>vwprintw</STRONG>,  saying  that  the  third
+       parameter  is  a  <STRONG>va_list</STRONG>,  defined  in  &lt;varargs.h&gt;, and referring the
+       reader to the  manual  pages  for  <EM>varargs</EM>  and  <STRONG>vprintf</STRONG>  for  detailed
+       descriptions.
 
-       SVr4 added  no  new  variations  of  <STRONG>printw</STRONG>,  but  provided  for  using
+       SVr4  added  no  new  variations  of  <STRONG>printw</STRONG>,  but  provided  for using
        &lt;varargs.h&gt; or &lt;stdarg.h&gt; to define the <STRONG>va_list</STRONG> type.
 
-       X/Open  Curses  added  <STRONG>vw_printw</STRONG>  to replace <STRONG>vwprintw</STRONG>, stating that its
+       X/Open Curses added <STRONG>vw_printw</STRONG> to replace  <STRONG>vwprintw</STRONG>,  stating  that  its
        <STRONG>va_list</STRONG> definition requires &lt;stdarg.h&gt;.
 
 
 </PRE><H2><a name="h2-PORTABILITY">PORTABILITY</a></H2><PRE>
-       In this implementation, <STRONG>vw_printw</STRONG> and <STRONG>vwprintw</STRONG> are equivalent, to  sup-
-       port legacy applications.  However, the latter (<STRONG>vwprintw</STRONG>) is obsolete:
+       In  this  implementation,  <STRONG>vw_printw</STRONG>  and  <STRONG>vwprintw</STRONG>  are equivalent, to
+       support  legacy  applications.   However,  the  latter  (<STRONG>vwprintw</STRONG>)   is
+       obsolete:
 
        <STRONG>o</STRONG>   The  XSI  Curses  standard, Issue 4 described these functions.  The
            function <STRONG>vwprintw</STRONG> is marked TO BE WITHDRAWN, and is to be  replaced
 
 
 
-ncurses 6.4                       2022-02-12                   <STRONG><A HREF="curs_printw.3x.html">curs_printw(3x)</A></STRONG>
+ncurses 6.4                       2023-09-16                   <STRONG><A HREF="curs_printw.3x.html">curs_printw(3x)</A></STRONG>
 </PRE>
 <div class="nav">
 <ul>