]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_addstr.3x
fee3f8145e353199ace2ad058cf0a4687e44c5ce
[ncurses.git] / man / curs_addstr.3x
1 .\"***************************************************************************
2 .\" Copyright (c) 1998 Free Software Foundation, Inc.                        *
3 .\"                                                                          *
4 .\" Permission is hereby granted, free of charge, to any person obtaining a  *
5 .\" copy of this software and associated documentation files (the            *
6 .\" "Software"), to deal in the Software without restriction, including      *
7 .\" without limitation the rights to use, copy, modify, merge, publish,      *
8 .\" distribute, distribute with modifications, sublicense, and/or sell       *
9 .\" copies of the Software, and to permit persons to whom the Software is    *
10 .\" furnished to do so, subject to the following conditions:                 *
11 .\"                                                                          *
12 .\" The above copyright notice and this permission notice shall be included  *
13 .\" in all copies or substantial portions of the Software.                   *
14 .\"                                                                          *
15 .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16 .\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18 .\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19 .\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20 .\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21 .\" THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22 .\"                                                                          *
23 .\" Except as contained in this notice, the name(s) of the above copyright   *
24 .\" holders shall not be used in advertising or otherwise to promote the     *
25 .\" sale, use or other dealings in this Software without prior written       *
26 .\" authorization.                                                           *
27 .\"***************************************************************************
28 .\"
29 .\" $Id: curs_addstr.3x,v 1.8 1998/03/11 21:12:53 juergen Exp $
30 .TH curs_addstr 3X ""
31 .SH NAME
32 \fBaddstr\fR, \fBaddnstr\fR, \fBwaddstr\fR, \fBwaddnstr\fR,
33 \fBmvaddstr\fR, \fBmvaddnstr\fR, \fBmvwaddstr\fR, \fBmvwaddnstr\fR - add a
34 string of characters to a \fBcurses\fR window and advance cursor
35 .SH SYNOPSIS
36 \fB#include <curses.h>\fR
37
38 \fBint addstr(const char *str);\fR
39 .br
40 \fBint addnstr(const char *str, int n);\fR
41 .br
42 \fBint waddstr(WINDOW *win, const char *str);\fR
43 .br
44 \fBint waddnstr(WINDOW *win, const char *str, int n);\fR
45 .br
46 \fBint mvaddstr(int y, int x, const char *str);\fR
47 .br
48 \fBint mvaddnstr(int y, int x, const char *str, int n);\fR
49 .br
50 \fBint mvwaddstr(WINDOW *win, int y, int x, const char *str);\fR
51 .br
52 \fBint mvwaddnstr(WINDOW *win, int y, int x, const char *str, int n);\fR
53 .SH DESCRIPTION
54 These routines write the characters of the (null-terminated) character string
55 \fIstr\fR on the given window.  It is similar to calling \fBwaddch\fR once for
56 each character in the string.  The four routines with \fIn\fR as the last
57 argument write at most \fIn\fR characters.  If \fIn\fR is -1, then the
58 entire string will be added.
59 .SH RETURN VALUE
60 All routines return the integer \fBERR\fR upon failure and \fBOK\fR on success
61 (the SVr4 manuals specify only "an integer value other than \fBERR\fR") upon
62 successful completion.
63 .SH NOTES
64 Note that all of these routines except \fBwaddstr\fR and \fBwaddnstr\fR may be
65 macros.
66 .SH PORTABILITY
67 All these entry points are described in the XSI Curses standard, Issue 4.  The
68 XSI errors EILSEQ and EOVERFLOW, associated with extended-level conformance,
69 are not yet detected.
70 .SH SEE ALSO
71 \fBcurses\fR(3X), \fBcurs_addch\fR(3X).
72 .\"#
73 .\"# The following sets edit modes for GNU EMACS
74 .\"# Local Variables:
75 .\"# mode:nroff
76 .\"# fill-column:79
77 .\"# End: