Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1 | .\"*************************************************************************** |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2 | .\" Copyright 2018-2023,2024 Thomas E. Dickey * |
| 3 | .\" Copyright 1998-2010,2017 Free Software Foundation, Inc. * |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4 | .\" * |
| 5 | .\" Permission is hereby granted, free of charge, to any person obtaining a * |
| 6 | .\" copy of this software and associated documentation files (the * |
| 7 | .\" "Software"), to deal in the Software without restriction, including * |
| 8 | .\" without limitation the rights to use, copy, modify, merge, publish, * |
| 9 | .\" distribute, distribute with modifications, sublicense, and/or sell * |
| 10 | .\" copies of the Software, and to permit persons to whom the Software is * |
| 11 | .\" furnished to do so, subject to the following conditions: * |
| 12 | .\" * |
| 13 | .\" The above copyright notice and this permission notice shall be included * |
| 14 | .\" in all copies or substantial portions of the Software. * |
| 15 | .\" * |
| 16 | .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * |
| 17 | .\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * |
| 18 | .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * |
| 19 | .\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * |
| 20 | .\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * |
| 21 | .\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * |
| 22 | .\" THE USE OR OTHER DEALINGS IN THE SOFTWARE. * |
| 23 | .\" * |
| 24 | .\" Except as contained in this notice, the name(s) of the above copyright * |
| 25 | .\" holders shall not be used in advertising or otherwise to promote the * |
| 26 | .\" sale, use or other dealings in this Software without prior written * |
| 27 | .\" authorization. * |
| 28 | .\"*************************************************************************** |
| 29 | .\" |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 30 | .\" $Id: curs_insch.3x,v 1.40 2024/04/20 19:03:47 tom Exp $ |
| 31 | .TH curs_insch 3X 2024-04-20 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "Library calls" |
| 32 | .ie \n(.g \{\ |
| 33 | .ds `` \(lq |
| 34 | .ds '' \(rq |
| 35 | .\} |
| 36 | .el \{\ |
| 37 | .ie t .ds `` `` |
| 38 | .el .ds `` "" |
| 39 | .ie t .ds '' '' |
| 40 | .el .ds '' "" |
| 41 | .\} |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 42 | .SH NAME |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 43 | \fB\%insch\fP, |
| 44 | \fB\%winsch\fP, |
| 45 | \fB\%mvinsch\fP, |
| 46 | \fB\%mvwinsch\fP \- |
| 47 | insert a \fIcurses\fP character in a window |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 48 | .SH SYNOPSIS |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 49 | .nf |
| 50 | \fB#include <curses.h>\fP |
| 51 | .PP |
| 52 | \fBint insch(chtype \fIch\fP); |
| 53 | \fBint winsch(WINDOW *\fIwin\fP, chtype \fIch\fP); |
| 54 | \fBint mvinsch(int \fIy\fP, int \fIx\fP, chtype \fIch\fP); |
| 55 | \fBint mvwinsch(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, chtype \fIch\fP); |
| 56 | .fi |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 57 | .SH DESCRIPTION |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 58 | These functions insert the |
| 59 | .I curses |
| 60 | character |
| 61 | .I ch |
| 62 | at the cursor in the specified window |
| 63 | .I win |
| 64 | (or |
| 65 | .BR \%stdscr ). |
| 66 | The character previously at the cursor and any to its right move one |
| 67 | cell to the right; |
| 68 | the rightmost character on the line is discarded. |
| 69 | The cursor does not advance. |
| 70 | .SH "RETURN VALUE" |
| 71 | These functions return |
| 72 | .B OK |
| 73 | on success and |
| 74 | .B ERR |
| 75 | on failure. |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 76 | .PP |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 77 | Functions taking a |
| 78 | .I \%WINDOW |
| 79 | pointer argument fail if the pointer is |
| 80 | .BR NULL . |
| 81 | .PP |
| 82 | Functions prefixed with \*(``mv\*('' first perform cursor movement and |
| 83 | fail if the position |
| 84 | .RI ( y , |
| 85 | .IR x ) |
| 86 | is outside the window boundaries. |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 87 | .SH NOTES |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 88 | .BR \%insch , |
| 89 | .BR \%mvinsch , |
| 90 | and |
| 91 | .B \%mvwinsch |
| 92 | may be implemented as macros. |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 93 | .PP |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 94 | A terminal's |
| 95 | .B \%insert_character |
| 96 | .RB ( ich1 ) |
| 97 | capability |
| 98 | is not necessarily employed. |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 99 | .SH PORTABILITY |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 100 | X/Open Curses, |
| 101 | Issue 4 describes these functions. |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 102 | .PP |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 103 | SVr4 |
| 104 | .I curses |
| 105 | describes a successful return value only as |
| 106 | \*(``an integer value other than |
| 107 | .BR ERR \*(''. |
| 108 | .SH "SEE ALSO" |
| 109 | \fB\%curs_ins_wch\fP(3X) describes comparable functions in the |
| 110 | wide-character |
| 111 | .I curses |
| 112 | configuration. |
| 113 | .PP |
| 114 | \fB\%curses\fP(3X), |
| 115 | \fB\%terminfo\fP(5) |