tail head cat sleep
QR code linking to this page

manページ  — curs_addstr

名称

addstr, addnstr, waddstr, waddnstr, mvaddstr, mvaddnstr, mvwaddstr, mvwaddnstr - 文字列を ncurses ウィンドウに追加し、カーソルを進める

内容

書式

#include <ncurses.h>

int addstr(char *str);
int addnstr(char *str, int n);
int waddstr(WINDOW *win, char *str);
int waddnstr(WINDOW *win, char *str, int n);
int mvaddstr(int y, int x, char *str);
int mvaddnstr(int y, int x, char *str, int n);
int mvwaddstr(WINDOW *win, int y, int x, char *str);
int mvwaddnstr(WINDOW *win, int y, int x, char *str,
int n);

解説

これらのルーチンは、ナル文字で終了する文字列 str の文字を 指定のウィンドウに表示します。 これは、文字列内の文字ごとに 1 回ずつ waddch を呼び出すのに類似しています。 最後の引数として n がある 4 つのルーチンは、 多くとも n 文字の文字を書き込みます。 n が負の場合は、文字列全体が追加されます。

戻り値

これらのルーチンはすべて、処理が失敗すると整数 ERR で返ります。 処理が成功して完了すると、ERR 以外の整数値が返されます。

注釈

waddstrwaddnstr を除くこれらすべてのルーチンが マクロである可能性があることに注意してください。

関連項目

ncurses(3), curs_addch(3).

curs_addstr (3)

tail head cat sleep
QR code linking to this page


このマニュアルページサービスについてのご意見は Ben Bullock にお知らせください。 Privacy policy.

One of the advantages of using UNIX to teach an operating systems course is the sources and documentation will easily fit into a student's briefcase.
— John Lions