]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libncurses/curs_delch.3
Make bdev userland access work like cdev userland access unless
[FreeBSD/FreeBSD.git] / lib / libncurses / curs_delch.3
1 .\" $FreeBSD$
2 .\"
3 .TH curs_delch 3 ""
4 .SH NAME
5 \fBdelch\fR, \fBwdelch\fR, \fBmvdelch\fR, 
6 \fBmvwdelch\fR - delete character under the cursor in a \fBncurses\fR window
7 .SH SYNOPSIS
8 \fB#include <ncurses.h>\fR
9
10 \fBint delch(void);\fR
11 .br
12 \fBint wdelch(WINDOW *win);\fR
13 .br
14 \fBint mvdelch(int y, int x);\fR
15 .br
16 \fBint mvwdelch(WINDOW *win, int y, int x);\fR
17 .br
18 .SH DESCRIPTION
19 These routines delete the character under the cursor; all characters to the
20 right of the cursor on the same line are moved to the left one position and the
21 last character on the line is filled with a blank.  The cursor position does
22 not change (after moving to \fIy\fR, \fIx\fR, if specified).  (This does not
23 imply use of the hardware delete character feature.)
24 .SH RETURN VALUE
25 All routines return the integer \fBERR\fR upon failure and an integer value
26 other than \fBERR\fR upon successful completion.
27 .SH NOTES
28 Note that \fBdelch\fR, \fBmvdelch\fR, and \fBmvwdelch\fR may be macros.
29 .SH SEE ALSO
30 \fBncurses\fR(3)
31 .\"#
32 .\"# The following sets edit modes for GNU EMACS
33 .\"# Local Variables:
34 .\"# mode:nroff
35 .\"# fill-column:79
36 .\"# End: