X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_addstr.3x.html;h=13e754354bb35eafe1ee3f9915ac38d62d4e0163;hp=34b7150801b307e6124f79ccf69fd7021348e33e;hb=f344f8539c1543f8cd65a5bb142dbaf23b9421d2;hpb=027d0c57c4c4d6690e8d8727888d3282dbe9aa86 diff --git a/doc/html/man/curs_addstr.3x.html b/doc/html/man/curs_addstr.3x.html index 34b71508..13e75435 100644 --- a/doc/html/man/curs_addstr.3x.html +++ b/doc/html/man/curs_addstr.3x.html @@ -45,15 +45,13 @@ - -

NAME

+

NAME

        addstr, addnstr, waddstr, waddnstr, mvaddstr, mvaddnstr,
        mvwaddstr, mvwaddnstr - add a string of characters to a
        curses window and advance cursor
 
 
-
-

SYNOPSIS

+

SYNOPSIS

        #include <curses.h>
 
        int addstr(const char *str);
@@ -66,8 +64,7 @@
        int mvwaddnstr(WINDOW *win, int y, int x, const char *str, int n);
 
 
-
-

DESCRIPTION

+

DESCRIPTION

        These  functions  write  the  (null-terminated)  character
        string str on the given window.  It is similar to  calling
        waddch once for each character in the string.
@@ -81,8 +78,7 @@
        If n is -1, then the entire string will be added.
 
 
-
-

RETURN VALUE

+

RETURN VALUE

        All  functions  return the integer ERR upon failure and OK
        on success.
 
@@ -100,19 +96,16 @@
        outside the window, or if the window pointer is null.
 
 
-
-

NOTES

+

NOTES

        All of these functions except waddnstr may be macros.
 
 
-
-

PORTABILITY

+

PORTABILITY

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

SEE ALSO

+

SEE ALSO

        curses(3x), curs_addch(3x).