]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_addstr.3x
ncurses 5.1
[ncurses.git] / man / curs_addstr.3x
1 .\"***************************************************************************
2 .\" Copyright (c) 1998,2000 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.9 2000/07/01 19:54:05 tom Exp $
30 .TH curs_addstr 3X ""
31 .SH NAME
32 \fBaddstr\fR,
33 \fBaddnstr\fR,
34 \fBwaddstr\fR,
35 \fBwaddnstr\fR,
36 \fBmvaddstr\fR,
37 \fBmvaddnstr\fR,
38 \fBmvwaddstr\fR,
39 \fBmvwaddnstr\fR - add a string of characters to a \fBcurses\fR window and advance cursor
40 .SH SYNOPSIS
41 \fB#include <curses.h>\fR
42
43 \fBint addstr(const char *str);\fR
44 .br
45 \fBint addnstr(const char *str, int n);\fR
46 .br
47 \fBint waddstr(WINDOW *win, const char *str);\fR
48 .br
49 \fBint waddnstr(WINDOW *win, const char *str, int n);\fR
50 .br
51 \fBint mvaddstr(int y, int x, const char *str);\fR
52 .br
53 \fBint mvaddnstr(int y, int x, const char *str, int n);\fR
54 .br
55 \fBint mvwaddstr(WINDOW *win, int y, int x, const char *str);\fR
56 .br
57 \fBint mvwaddnstr(WINDOW *win, int y, int x, const char *str, int n);\fR
58 .SH DESCRIPTION
59 These routines write the characters of the (null-terminated) character string
60 \fIstr\fR on the given window.  It is similar to calling \fBwaddch\fR once for
61 each character in the string.  The four routines with \fIn\fR as the last
62 argument write at most \fIn\fR characters.  If \fIn\fR is -1, then the
63 entire string will be added.
64 .SH RETURN VALUE
65 All routines return the integer \fBERR\fR upon failure and \fBOK\fR on success
66 (the SVr4 manuals specify only "an integer value other than \fBERR\fR") upon
67 successful completion.
68 .SH NOTES
69 Note that all of these routines except \fBwaddstr\fR and \fBwaddnstr\fR may be
70 macros.
71 .SH PORTABILITY
72 All these entry points are described in the XSI Curses standard, Issue 4.  The
73 XSI errors EILSEQ and EOVERFLOW, associated with extended-level conformance,
74 are not yet detected.
75 .SH SEE ALSO
76 \fBcurses\fR(3X), \fBcurs_addch\fR(3X).
77 .\"#
78 .\"# The following sets edit modes for GNU EMACS
79 .\"# Local Variables:
80 .\"# mode:nroff
81 .\"# fill-column:79
82 .\"# End: