xref: /freebsd/contrib/ncurses/man/curs_delch.3x (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
***************************************************************************
Copyright 2018-2023,2024 Thomas E. Dickey *
Copyright 1998-2006,2010 Free Software Foundation, Inc. *
*
Permission is hereby granted, free of charge, to any person obtaining a *
copy of this software and associated documentation files (the *
"Software"), to deal in the Software without restriction, including *
without limitation the rights to use, copy, modify, merge, publish, *
distribute, distribute with modifications, sublicense, and/or sell *
copies of the Software, and to permit persons to whom the Software is *
furnished to do so, subject to the following conditions: *
*
The above copyright notice and this permission notice shall be included *
in all copies or substantial portions of the Software. *
*
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
*
Except as contained in this notice, the name(s) of the above copyright *
holders shall not be used in advertising or otherwise to promote the *
sale, use or other dealings in this Software without prior written *
authorization. *
***************************************************************************

$Id: curs_delch.3x,v 1.34 2024/04/20 19:24:14 tom Exp $
curs_delch 3X 2024-04-20 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "Library calls"
.\} .\}
NAME
\%delch, \%wdelch, \%mvdelch, \%mvwdelch - delete a character from a curses window
SYNOPSIS
#include <curses.h>

int delch(void); int wdelch(WINDOW *win); int mvdelch(int y, int x); int mvwdelch(WINDOW *win, int y, int x);

DESCRIPTION
\%wdelch deletes the character at the cursor position in win . \%ncurses(3X) describes the variants of this function.

\%wdelch moves all characters to the right of the cursor on the same line to the left one position and replaces the contents of the rightmost position on the line with the window's blank character; see \%bkgd(3X) (wide-character API users may consult \%bkgrnd(3X) instead). The cursor position does not change (after moving to ( y , x ), if specified).

RETURN VALUE
These functions return OK on success and ERR on failure.

Functions taking a \%WINDOW pointer argument fail if the pointer is NULL .

Functions prefixed with \*(``mv\*('' first perform cursor movement and fail if the position ( y , x ) is outside the window boundaries.

NOTES
\%delch , \%mvdelch , and \%mvwdelch may be implemented as macros.

A terminal's \%delete_character ( dch1 ) capability is not necessarily employed.

PORTABILITY
X/Open Curses, Issue 4 describes these functions.

SVr4 curses describes a successful return value only as \*(``an integer value other than ERR \*(''.

SEE ALSO
\%curses(3X)