C言語 - ncurses - ウィンドウの上にウィンドウ

 クラウディア
1. 概要

1. 概要

 下記の関数を使用して、表示しているウィンドウの上に、子ウィンドウを重ね書きすることができます。

#include <ncurses.h>

WINDOW *newwin(int nlines, int ncols, int begin_y, intbegin_x);
WINDOW *subwin(WINDOW *orig, int nlines, int ncols, int begin_y,  int  begin_x);