CCMS - Make the cache coherency locks MPSAFE.
[dragonfly.git] / lib / libncurses / man / curs_insstr.3
1 .\"***************************************************************************
2 .\" Copyright (c) 1998,2000,2001 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_insstr.3x,v 1.12 2001/11/03 19:59:03 tom Exp $
30 .\" $DragonFly: src/lib/libncurses/man/curs_insstr.3,v 1.1 2005/03/12 19:13:54 eirikn Exp $
31 .TH curs_insstr 3X ""
32 .SH NAME
33 \fBinsstr\fR,
34 \fBinsnstr\fR,
35 \fBwinsstr\fR,
36 \fBwinsnstr\fR,
37 \fBmvinsstr\fR,
38 \fBmvinsnstr\fR,
39 \fBmvwinsstr\fR,
40 \fBmvwinsnstr\fR - insert string before cursor in a \fBcurses\fR window
41 .SH SYNOPSIS
42 \fB#include <curses.h>\fR
43 .br
44 \fBint insstr(const char *str);\fR
45 .br
46 \fBint insnstr(const char *str, int n);\fR
47 .br
48 \fBint winsstr(WINDOW *win, const char *str);\fR
49 .br
50 \fBint winsnstr(WINDOW *win, const char *str, int n);\fR
51 .br
52 \fBint mvinsstr(int y, int x, const char *str);\fR
53 .br
54 \fBint mvinsnstr(int y, int x, const char *str, int n);\fR
55 .br
56 \fBint mvwinsstr(WINDOW *win, int y, int x, const char *str);\fR
57 .br
58 \fBint mvwinsnstr(WINDOW *win, int y, int x, const char *str, int n);\fR
59 .br
60 .SH DESCRIPTION
61 These routines insert a character string (as many characters as will fit on the
62 line) before the character under the cursor.  All characters to the right of
63 the cursor are shifted right, with the possibility of the rightmost characters
64 on the line being lost.  The cursor position does not change (after moving to
65 \fIy\fR, \fIx\fR, if specified). The four routines with \fIn\fR as the last
66 argument insert a leading substring of at most \fIn\fR characters.  If
67 \fIn\fR<=0, then the entire string is inserted.
68
69 If a character in \fIstr\fR is a tab, newline, carriage return or
70 backspace, the cursor is moved appropriately within the window.  A
71 newline also does a \fBclrtoeol\fR before moving.  Tabs are considered
72 to be at every eighth column.  If a character in \fIstr\fR is another
73 control character, it is drawn in the \fB^\fR\fIX\fR notation.
74 Calling \fBwinch\fR after adding a control character (and moving to
75 it, if necessary) does not return the control character, but instead
76 returns a character in the ^-representation of the control character.
77 .SH RETURN VALUE
78 All routines that return an integer return \fBERR\fR upon failure and OK (SVr4
79 specifies only "an integer value other than \fBERR\fR") upon successful
80 completion, unless otherwise noted in the preceding routine descriptions.
81 .SH NOTES
82 Note that all but \fBwinsnstr\fR may be macros.
83 .SH PORTABILITY
84 These functions are described in the XSI Curses standard, Issue 4, which adds
85 const qualifiers to the arguments.  The XSI Curses error conditions
86 \fBEILSEQ\fR and \fBEILOVERFLOW\fR associated with extended-level conformance
87 are not yet detected (this implementation does not yet support XPG4 multibyte
88 characters).
89 .SH SEE ALSO
90 \fBcurses\fR(3X), \fBcurs_clear\fR(3X), \fBcurs_inch\fR(3X).
91 .\"#
92 .\"# The following sets edit modes for GNU EMACS
93 .\"# Local Variables:
94 .\"# mode:nroff
95 .\"# fill-column:79
96 .\"# End: