blob: 1244001dbd958a248c3694bc8c8866df1568ee98 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301.\"***************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002.\" Copyright 2019-2023,2024 Thomas E. Dickey *
3.\" Copyright 1998-2012,2017 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304.\" *
5.\" Permission is hereby granted, free of charge, to any person obtaining a *
6.\" copy of this software and associated documentation files (the *
7.\" "Software"), to deal in the Software without restriction, including *
8.\" without limitation the rights to use, copy, modify, merge, publish, *
9.\" distribute, distribute with modifications, sublicense, and/or sell *
10.\" copies of the Software, and to permit persons to whom the Software is *
11.\" furnished to do so, subject to the following conditions: *
12.\" *
13.\" The above copyright notice and this permission notice shall be included *
14.\" in all copies or substantial portions of the Software. *
15.\" *
16.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19.\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20.\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21.\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22.\" THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23.\" *
24.\" Except as contained in this notice, the name(s) of the above copyright *
25.\" holders shall not be used in advertising or otherwise to promote the *
26.\" sale, use or other dealings in this Software without prior written *
27.\" authorization. *
28.\"***************************************************************************
29.\"
micky3879b9f5e72025-07-08 18:04:53 -040030.\" $Id: curs_addstr.3x,v 1.45 2024/04/20 19:18:18 tom Exp $
31.TH curs_addstr 3X 2024-04-20 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "Library calls"
32.ie \n(.g \{\
33.ds `` \(lq
34.ds '' \(rq
35.\}
36.el \{\
37.ie t .ds `` ``
38.el .ds `` ""
39.ie t .ds '' ''
40.el .ds '' ""
41.\}
42.
Steve Kondikae271bc2015-11-15 02:50:53 +010043.de bP
micky3879b9f5e72025-07-08 18:04:53 -040044.ie n .IP \(bu 4
45.el .IP \(bu 2
Steve Kondikae271bc2015-11-15 02:50:53 +010046..
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053047.SH NAME
micky3879b9f5e72025-07-08 18:04:53 -040048\fB\%addstr\fP,
49\fB\%addnstr\fP,
50\fB\%waddstr\fP,
51\fB\%waddnstr\fP,
52\fB\%mvaddstr\fP,
53\fB\%mvaddnstr\fP,
54\fB\%mvwaddstr\fP,
55\fB\%mvwaddnstr\fP \-
56add a string to a \fIcurses\fR window and advance the cursor
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053057.SH SYNOPSIS
58.nf
micky3879b9f5e72025-07-08 18:04:53 -040059\fB#include <curses.h>
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053060.PP
micky3879b9f5e72025-07-08 18:04:53 -040061\fBint addstr(const char *\fIstr\fP);
62\fBint mvaddstr(int \fIy\fP, int \fIx\fP, const char *\fIstr\fP);
63\fBint mvwaddstr(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, const char *\fIstr\fP);
64\fBint waddstr(WINDOW *\fIwin\fP, const char *\fIstr\fP);
65.PP
66\fBint addnstr(const char *\fIstr\fP, int \fIn\fP);
67\fBint mvaddnstr(int \fIy\fP, int \fIx\fP, const char *\fIstr\fP, int \fIn\fP);
68\fBint mvwaddnstr(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, const char *\fIstr\fP, int \fIn\fP);
69\fBint waddnstr(WINDOW *\fIwin\fP, const char *\fIstr\fP, int \fIn\fP);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053070.fi
71.SH DESCRIPTION
micky3879b9f5e72025-07-08 18:04:53 -040072.B waddstr
73writes the characters of the (null-terminated) string
74.I str
75to the window
76.IR win .
77Its process is similar to calling \fB\%waddch\fP(3X) for each
78.I char
79in
80.IR str .
81Control characters are processed as in \fB\%waddch\fP(3X).
Steve Kondikae271bc2015-11-15 02:50:53 +010082.PP
micky3879b9f5e72025-07-08 18:04:53 -040083.B waddnstr
84writes at most
85.I n
86characters,
87or until a terminating null character occurs in
88.IR str .
89If
90.I n
91is \-1,
92.B
93.B waddnstr
94writes the entire string.
Steve Kondikae271bc2015-11-15 02:50:53 +010095.PP
micky3879b9f5e72025-07-08 18:04:53 -040096\fB\%ncurses\fP(3X) describes the variants of these functions.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053097.SH RETURN VALUE
micky3879b9f5e72025-07-08 18:04:53 -040098These functions return
99.B OK
100on success and
101.B ERR
102on failure.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530103.PP
micky3879b9f5e72025-07-08 18:04:53 -0400104X/Open Curses does not specify any error conditions.
105.I \%ncurses
106returns an error
Steve Kondikae271bc2015-11-15 02:50:53 +0100107.bP
micky3879b9f5e72025-07-08 18:04:53 -0400108if the window pointer is
109.BR NULL ,
Steve Kondikae271bc2015-11-15 02:50:53 +0100110.bP
micky3879b9f5e72025-07-08 18:04:53 -0400111if the string pointer is
112.BR NULL ,
113or
Steve Kondikae271bc2015-11-15 02:50:53 +0100114.bP
micky3879b9f5e72025-07-08 18:04:53 -0400115if an internal \fB\%waddch\fP(3X) call returns an error.
Steve Kondikae271bc2015-11-15 02:50:53 +0100116.PP
micky3879b9f5e72025-07-08 18:04:53 -0400117Functions prefixed with \*(``mv\*('' first perform cursor movement and
118fail if the position
119.RI ( y ,
120.IR x )
121is outside the window boundaries.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530122.SH NOTES
micky3879b9f5e72025-07-08 18:04:53 -0400123All of these functions except \fBwaddnstr\fP may be macros.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530124.SH PORTABILITY
micky3879b9f5e72025-07-08 18:04:53 -0400125X/Open Curses,
126Issue 4 describes these functions.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530127.SH SEE ALSO
micky3879b9f5e72025-07-08 18:04:53 -0400128\fB\%curs_addwstr\fP(3X) describes comparable functions of the
129.I \%ncurses
130library in its wide-character configuration
131.RI ( \%ncursesw ).
132.PP
133\fB\%curses\fP(3X),
134\fB\%curs_addch\fP(3X),
135\fB\%curs_addchstr\fP(3X)