X-Git-Url: https://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_printw.3x.html;h=90a016cf79044fad7f42fb8efc832ec6ed3b44e5;hb=16fbf3f4f7d96b6ee6bf9159b22f26e05962aa3d;hp=cb50d7b7ee445b611ea6f9cecd54e49be8d34176;hpb=c0f109a299a82a33c16bd7af942a12ce9aefaaf0;p=ncurses.git diff --git a/doc/html/man/curs_printw.3x.html b/doc/html/man/curs_printw.3x.html index cb50d7b7..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

@@ -70,7 +70,7 @@
        printf is output instead as though waddstr were used on the given  win-
        dow.
 
-       The  vwprintw  and  wv_printw  routines  are  analogous to vprintf [see
+       The  vwprintw  and  vw_printw  routines  are  analogous to vprintf [see
        printf(3)] and perform a wprintw using a variable argument  list.   The
        third  argument  is a va_list, a pointer to a list of arguments, as de-
        fined in <stdarg.h>.
@@ -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.