doc/documentation/manual-pages/ja/man3/curs_delch.3
Sergio Carlavilla Delgado 989d921f5d Migrate doc to Hugo/AsciiDoctor
I'm very pleased to announce the release of
our new website and documentation using
the new toolchain with Hugo and AsciiDoctor.

To get more information about the new toolchain
please read the FreeBSD Documentation Project Primer[1],
Hugo docs[2] and AsciiDoctor docs[3].

Acknowledgment:
Benedict Reuschling <bcr@>
Glen Barber <gjb@>
Hiroki Sato <hrs@>
Li-Wen Hsu <lwhsu@>
Sean Chittenden <seanc@>
The FreeBSD Foundation

[1] https://docs.FreeBSD.org/en/books/fdp-primer/
[2] https://gohugo.io/documentation/
[3] https://docs.asciidoctor.org/home/

Approved by:    doceng, core
2021-01-26 00:31:29 +01:00

32 lines
931 B
Groff

.\" $FreeBSD$
.\"
.TH curs_delch 3 ""
.SH 名称
\fBdelch\fR, \fBwdelch\fR, \fBmvdelch\fR,
\fBmvwdelch\fR - \fBncurses\fR ウィンドウのカーソルの下の文字を削除する
.SH 書式
\fB#include <ncurses.h>\fR
\fBint delch(void);\fR
.br
\fBint wdelch(WINDOW *win);\fR
.br
\fBint mvdelch(int y, int x);\fR
.br
\fBint mvwdelch(WINDOW *win, int y, int x);\fR
.br
.SH 解説
これらのルーチンは、カーソルの下の文字を削除します。
同じ行のカーソルの右にある文字はすべて 1 位置だけ左に移動し、
行の最後の文字はブランクで埋められます。
カーソルの位置は変化しません
(指定された場合、\fIy\fR, \fIx\fR に移動した後です)。
(これは、ハードウェアの文字削除機能の使用を意味しません)。
.SH 戻り値
ルーチンはすべて、処理失敗した場合整数 \fBERR\fR を返します。
処理が正常に完了した場合は、\fBERR\fR 以外の整数値を返します。
.SH 注釈
\fBdelch\fR, \fBmvdelch\fR および
\fBmvwdelch\fR がマクロである可能性があることに注意してください。
.SH 関連項目
\fBncurses\fR(3)