blob: 2dc7673c3768163ad001958925fbf7634fb378d1 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301.\"***************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +01002.\" Copyright (c) 1998-2006,2010 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303.\" *
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.\"
Steve Kondikae271bc2015-11-15 02:50:53 +010029.\" $Id: curs_inchstr.3x,v 1.15 2010/12/04 18:36:44 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053030.TH curs_inchstr 3X ""
31.na
32.hy 0
33.SH NAME
34\fBinchstr\fR,
35\fBinchnstr\fR,
36\fBwinchstr\fR,
37\fBwinchnstr\fR,
38\fBmvinchstr\fR,
39\fBmvinchnstr\fR,
40\fBmvwinchstr\fR,
Steve Kondikae271bc2015-11-15 02:50:53 +010041\fBmvwinchnstr\fR \- get a string of characters (and attributes) from a \fBcurses\fR window
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053042.ad
43.hy
44.SH SYNOPSIS
45\fB#include <curses.h>\fR
46.sp
47\fBint inchstr(chtype *chstr);\fR
48.br
49\fBint inchnstr(chtype *chstr, int n);\fR
50.br
51\fBint winchstr(WINDOW *win, chtype *chstr);\fR
52.br
53\fBint winchnstr(WINDOW *win, chtype *chstr, int n);\fR
54.br
55\fBint mvinchstr(int y, int x, chtype *chstr);\fR
56.br
57\fBint mvinchnstr(int y, int x, chtype *chstr, int n);\fR
58.br
59\fBint mvwinchstr(WINDOW *win, int y, int x, chtype *chstr);\fR
60.br
61\fBint mvwinchnstr(WINDOW *win, int y, int x, chtype *chstr, int n);\fR
62.br
63.SH DESCRIPTION
64These routines return a NULL-terminated array of \fBchtype\fR quantities,
65starting at the current cursor position in the named window and ending at the
66right margin of the window. The four functions with \fIn\fR as
67the last argument, return a leading substring at most \fIn\fR characters long
68(exclusive of the trailing (chtype)0).
69Constants defined in \fB<curses.h>\fR can be used with the \fB&\fR (logical
70AND) operator to extract the character or the attribute alone from any position
71in the \fIchstr\fR [see \fBcurs_inch\fR(3X)].
72.SH RETURN VALUE
73All routines return the integer \fBERR\fR upon failure and an integer value
74other than \fBERR\fR upon successful completion (the number of characters
75retrieved, exclusive of the trailing 0).
76.PP
77No error conditions are defined.
78If the \fIchstr\fP parameter is null,
79no data is returned,
80and the return value is zero.
Steve Kondikae271bc2015-11-15 02:50:53 +010081.PP
82Functions with a "mv" prefix first perform a cursor movement using
83\fBwmove\fP, and return an error if the position is outside the window,
84or if the window pointer is null.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053085.SH NOTES
86Note that all routines except \fBwinchnstr\fR may be macros. SVr4 does not
Steve Kondikae271bc2015-11-15 02:50:53 +010087document whether the result string is zero-terminated; it does not document
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053088whether a length limit argument includes any trailing 0; and it does not
89document the meaning of the return value.
90.SH PORTABILITY
91These functions are described in the XSI Curses standard, Issue 4. It is no
92more specific than the SVr4 documentation on the trailing 0. It does specify
93that the successful return of the functions is \fBOK\fR.
94.SH SEE ALSO
95\fBcurses\fR(3X), \fBcurs_inch\fR(3X).
96.PP
97Comparable functions in the wide-character (ncursesw) library are
98described in
99\fBcurs_in_wchstr\fR(3X).