X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_addwstr.3x.html;h=f5ef8b319004a75b165683a491aecf2e1115169d;hp=38e95897cba335ad5f6a943b68adbc3ecfbca1d1;hb=8f6d94b8d6211a2323caef53fa4c96c475ec9a62;hpb=a8987e73ec254703634802b4f7ee30d3a485524d diff --git a/doc/html/man/curs_addwstr.3x.html b/doc/html/man/curs_addwstr.3x.html index 38e95897..f5ef8b31 100644 --- a/doc/html/man/curs_addwstr.3x.html +++ b/doc/html/man/curs_addwstr.3x.html @@ -1,7 +1,6 @@ - + + + curs_addwstr 3x - + -

curs_addwstr 3x

-
+

curs_addwstr 3x

-
-curs_addwstr(3x)                                 curs_addwstr(3x)
+curs_addwstr(3x)                                              curs_addwstr(3x)
 
 
 
 
-
-

NAME

-       addwstr,   addnwstr,   waddwstr,   waddnwstr,   mvaddwstr,
-       mvaddnwstr, mvwaddwstr, mvwaddnwstr - add a string of wide
-       characters to a curses window and advance cursor
+

NAME

+       addwstr, addnwstr, waddwstr, waddnwstr, mvaddwstr, mvaddnwstr,
+       mvwaddwstr, mvwaddnwstr - add a string of wide characters to a curses
+       window and advance cursor
 
 
-
-

SYNOPSIS

+

SYNOPSIS

        #include <curses.h>
 
        int addwstr(const wchar_t *wstr);
@@ -66,55 +64,63 @@
        int mvwaddnwstr(WINDOW *win, int y, int x, const wchar_t *wstr, int n);
 
 
-
-

DESCRIPTION

-       These  routines  write  the characters of the (null-termi-
-       nated) wchar_tcharacter string wstr on the  given  window.
-       It  is  similar to constructing a cchar_t for each wchar_t
-       in the string, then calling  wadd_wch  for  the  resulting
-       cchar_t.
+

DESCRIPTION

+       These  functions  write the characters of the (null-terminated) wchar_t
+       character string wstr on the given window.  It is similar to construct-
+       ing a cchar_t for each wchar_t in the string, then calling wadd_wch for
+       the resulting cchar_t.
 
-       The mv routines perform cursor movement once, before writ-
-       ing any characters.  Thereafter, the cursor is advanced as
-       a side-effect of writing to the window.
+       The mv functions perform cursor movement once, before writing any char-
+       acters.  Thereafter, the cursor is advanced as a side-effect of writing
+       to the window.
 
-       The  four  routines  with  n as the last argument write at
-       most n wchar_t characters.  If n is -1,  then  the  entire
-       string  will be added, up to the maximum number of charac-
-       ters that will fit on the line,  or  until  a  terminating
-       null is reached.
+       The four functions with n as the last argument write at most n  wchar_t
+       characters,  or  until a terminating null is reached.  If n is -1, then
+       the entire string will be added.
 
 
-
-

RETURN VALUES

-       All routines return the integer ERR upon failure and OK on
-       success.
+

RETURN VALUE

+       All functions return the integer ERR upon failure and OK on success.
 
+       X/Open does not define any error conditions.  This  implementation  re-
+       turns an error
 
-
-

NOTES

-       Note that all of these routines except  waddnwstr  may  be
-       macros.
+       o   if the window pointer is null or
 
+       o   if the string pointer is null or
 
-
-

PORTABILITY

-       All  these  entry  points  are described in the XSI Curses
-       standard, Issue 4.
+       o   if the corresponding calls to wadd_wch return an error.
 
+       Functions  with  a  "mv"  prefix  first perform a cursor movement using
+       wmove, and return an error if the position is outside the window, or if
+       the window pointer is null.
 
-
-

SEE ALSO

-       Functions: curses(3x), curs_add_wch(3x)
+
+

NOTES

+       All of these functions except waddnwstr may be macros.
+
+
+

PORTABILITY

+       These functions are described in the XSI Curses standard, Issue 4.
+
+
+

SEE ALSO

+       curses(3x), curs_add_wch(3x)
 
 
 
-                                                 curs_addwstr(3x)
+                                                              curs_addwstr(3x)
 
-
-
-Man(1) output converted with -man2html -
+