blob: 1b17db952d11f2a51e6a65efcf78e0ce23e0b35b [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_instr.3x,v 1.16 2010/12/04 18:38:55 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053030.TH curs_instr 3X ""
31.SH NAME
32\fBinstr\fR,
33\fBinnstr\fR,
34\fBwinstr\fR,
35\fBwinnstr\fR,
36\fBmvinstr\fR,
37\fBmvinnstr\fR,
38\fBmvwinstr\fR,
Steve Kondikae271bc2015-11-15 02:50:53 +010039\fBmvwinnstr\fR \- get a string of characters from a \fBcurses\fR window
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053040.SH SYNOPSIS
41\fB#include <curses.h>\fR
42.sp
43\fBint instr(char *str);\fR
44.br
45\fBint innstr(char *str, int n);\fR
46.br
47\fBint winstr(WINDOW *win, char *str);\fR
48.br
49\fBint winnstr(WINDOW *win, char *str, int n);\fR
50.br
51\fBint mvinstr(int y, int x, char *str);\fR
52.br
53\fBint mvinnstr(int y, int x, char *str, int n);\fR
54.br
55\fBint mvwinstr(WINDOW *win, int y, int x, char *str);\fR
56.br
57\fBint mvwinnstr(WINDOW *win, int y, int x, char *str, int n);\fR
58.br
59.SH DESCRIPTION
60These routines return a string of characters in \fIstr\fR, extracted starting
61at the current cursor position in the named window.
62Attributes are stripped from the characters. The four
63functions with \fIn\fR as the last argument return a leading substring at most
64\fIn\fR characters long (exclusive of the trailing NUL).
65.SH RETURN VALUE
66All of the functions return \fBERR\fR upon failure,
67or the number of characters actually read into the string.
68.PP
69X/Open defines no error conditions.
70In this implementation,
71if the window parameter is null or the str parameter is null,
72a zero is returned.
Steve Kondikae271bc2015-11-15 02:50:53 +010073.PP
74Functions with a "mv" prefix first perform a cursor movement using
75\fBwmove\fP, and return an error if the position is outside the window,
76or if the window pointer is null.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053077.SH NOTES
78Note that all routines except \fBwinnstr\fR may be macros.
79.SH PORTABILITY
80SVr4 does not
81document whether a length limit includes or excludes the trailing NUL.
82.PP
83The ncurses library extends the XSI description by allowing a negative
84value for \fIn\fR.
85In this case, the functions return the string ending at the right margin.
86.SH SEE ALSO
87\fBcurses\fR(3X).