]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_inchstr.3x
ncurses 5.9 - patch 20150307
[ncurses.git] / man / curs_inchstr.3x
1 .\"***************************************************************************
2 .\" Copyright (c) 1998-2006,2010 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_inchstr.3x,v 1.15 2010/12/04 18:36:44 tom Exp $
30 .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,
41 \fBmvwinchnstr\fR \- get a string of characters (and attributes) from a \fBcurses\fR window
42 .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
64 These routines return a NULL-terminated array of \fBchtype\fR quantities,
65 starting at the current cursor position in the named window and ending at the
66 right margin of the window.  The four functions with \fIn\fR as
67 the last argument, return a leading substring at most \fIn\fR characters long
68 (exclusive of the trailing (chtype)0).
69 Constants defined in \fB<curses.h>\fR can be used with the \fB&\fR (logical
70 AND) operator to extract the character or the attribute alone from any position
71 in the \fIchstr\fR [see \fBcurs_inch\fR(3X)].
72 .SH RETURN VALUE
73 All routines return the integer \fBERR\fR upon failure and an integer value
74 other than \fBERR\fR upon successful completion (the number of characters
75 retrieved, exclusive of the trailing 0).
76 .PP
77 No error conditions are defined.
78 If the \fIchstr\fP parameter is null,
79 no data is returned,
80 and the return value is zero.
81 .PP
82 Functions with a "mv" prefix first perform a cursor movement using
83 \fBwmove\fP, and return an error if the position is outside the window,
84 or if the window pointer is null.
85 .SH NOTES
86 Note that all routines except \fBwinchnstr\fR may be macros.  SVr4 does not
87 document whether the result string is zero-terminated; it does not document
88 whether a length limit argument includes any trailing 0; and it does not
89 document the meaning of the return value.
90 .SH PORTABILITY
91 These functions are described in the XSI Curses standard, Issue 4.  It is no
92 more specific than the SVr4 documentation on the trailing 0.  It does specify
93 that the successful return of the functions is \fBOK\fR.
94 .SH SEE ALSO
95 \fBcurses\fR(3X), \fBcurs_inch\fR(3X).
96 .PP
97 Comparable functions in the wide-character (ncursesw) library are
98 described in
99 \fBcurs_in_wchstr\fR(3X).