]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_inchstr.3x
ncurses 6.0 - patch 20170429
[ncurses.git] / man / curs_inchstr.3x
1 .\"***************************************************************************
2 .\" Copyright (c) 1998-2010,2017 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.16 2017/04/29 21:31:17 tom Exp $
30 .TH curs_inchstr 3X ""
31 .ie \n(.g .ds `` \(lq
32 .el       .ds `` ``
33 .ie \n(.g .ds '' \(rq
34 .el       .ds '' ''
35 .de bP
36 .IP \(bu 4
37 ..
38 .na
39 .hy 0
40 .SH NAME
41 \fBinchstr\fR,
42 \fBinchnstr\fR,
43 \fBwinchstr\fR,
44 \fBwinchnstr\fR,
45 \fBmvinchstr\fR,
46 \fBmvinchnstr\fR,
47 \fBmvwinchstr\fR,
48 \fBmvwinchnstr\fR \- get a string of characters (and attributes) from a \fBcurses\fR window
49 .ad
50 .hy
51 .SH SYNOPSIS
52 \fB#include <curses.h>\fR
53 .sp
54 \fBint inchstr(chtype *chstr);\fR
55 .br
56 \fBint inchnstr(chtype *chstr, int n);\fR
57 .br
58 \fBint winchstr(WINDOW *win, chtype *chstr);\fR
59 .br
60 \fBint winchnstr(WINDOW *win, chtype *chstr, int n);\fR
61 .br
62 \fBint mvinchstr(int y, int x, chtype *chstr);\fR
63 .br
64 \fBint mvinchnstr(int y, int x, chtype *chstr, int n);\fR
65 .br
66 \fBint mvwinchstr(WINDOW *win, int y, int x, chtype *chstr);\fR
67 .br
68 \fBint mvwinchnstr(WINDOW *win, int y, int x, chtype *chstr, int n);\fR
69 .br
70 .SH DESCRIPTION
71 These routines return a NULL-terminated array of \fBchtype\fR quantities,
72 starting at the current cursor position in the named window and ending at the
73 right margin of the window.  The four functions with \fIn\fR as
74 the last argument, return a leading substring at most \fIn\fR characters long
75 (exclusive of the trailing (chtype)0).
76 Constants defined in \fB<curses.h>\fR can be used with the \fB&\fR (logical
77 AND) operator to extract the character or the attribute alone from any position
78 in the \fIchstr\fR [see \fBcurs_inch\fR(3X)].
79 .SH RETURN VALUE
80 All routines return the integer \fBERR\fR upon failure and an integer value
81 other than \fBERR\fR upon successful completion (the number of characters
82 retrieved, exclusive of the trailing 0).
83 .PP
84 X/Open Curses defines no error conditions.
85 In this implementation:
86 .bP
87 If the \fIwin\fP parameter is null, an error is returned,
88 .bP
89 If the \fIchstr\fP parameter is null, an error is returned,
90 .PP
91 Functions with a \*(``mv\*('' prefix first perform a cursor movement using
92 \fBwmove\fP, and return an error if the position is outside the window,
93 or if the window pointer is null.
94 .SH NOTES
95 Note that all routines except \fBwinchnstr\fR may be macros.  SVr4 does not
96 document whether the result string is zero-terminated; it does not document
97 whether a length limit argument includes any trailing 0; and it does not
98 document the meaning of the return value.
99 .SH PORTABILITY
100 These functions are described in the XSI Curses standard, Issue 4.  It is no
101 more specific than the SVr4 documentation on the trailing 0.  It does specify
102 that the successful return of the functions is \fBOK\fR.
103 .SH SEE ALSO
104 \fBcurses\fR(3X), \fBcurs_inch\fR(3X).
105 .PP
106 Comparable functions in the wide-character (ncursesw) library are
107 described in
108 \fBcurs_in_wchstr\fR(3X).