X-Git-Url: https://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_printw.3x.html;h=90a016cf79044fad7f42fb8efc832ec6ed3b44e5;hb=16fbf3f4f7d96b6ee6bf9159b22f26e05962aa3d;hp=9ee58d47aaae59ccccf875ddd09eca2c65f0ecaa;hpb=5899b5e464ecec4b1613f6fef8cb7b75793c88e3;p=ncurses.git diff --git a/doc/html/man/curs_printw.3x.html b/doc/html/man/curs_printw.3x.html index 9ee58d47..90a016cf 100644 --- a/doc/html/man/curs_printw.3x.html +++ b/doc/html/man/curs_printw.3x.html @@ -1,6 +1,6 @@ - @@ -36,7 +36,7 @@ curs_printw 3x - +

curs_printw 3x

@@ -54,14 +54,14 @@

SYNOPSIS

        #include <curses.h>
 
-       int printw(const char *fmt, ...);
-       int wprintw(WINDOW *win, const char *fmt, ...);
-       int mvprintw(int y, int x, const char *fmt, ...);
-       int mvwprintw(WINDOW *win, int y, int x, const char *fmt, ...);
-       int vw_printw(WINDOW *win, const char *fmt, va_list varglist);
+       int printw(const char *fmt, ...);
+       int wprintw(WINDOW *win, const char *fmt, ...);
+       int mvprintw(int y, int x, const char *fmt, ...);
+       int mvwprintw(WINDOW *win, int y, int x, const char *fmt, ...);
+       int vw_printw(WINDOW *win, const char *fmt, va_list varglist);
 
        /* obsolete */
-       int vwprintw(WINDOW *win, const char *fmt, va_list varglist);
+       int vwprintw(WINDOW *win, const char *fmt, va_list varglist);
 
 
 

DESCRIPTION

@@ -109,7 +109,7 @@
        would be output from printf(3) would instead be output using waddstr on
        the given window.  SVr3 also added vwprintw, saying that the third  pa-
        rameter  is a va_list, defined in <varargs.h>, and referring the reader
-       to the manual pages for varargs and vprintf for detailed descriptions.
+       to the manual pages for varargs and vprintf for detailed descriptions.
 
        SVr4 added  no  new  variations  of  printw,  but  provided  for  using
        <varargs.h> or <stdarg.h> to define the va_list type.