コード例 #1
0
ファイル: curses.c プロジェクト: carriercomm/MacMinix
endwin()
{
	/* flush any last changes */
	refresh();

	/* change the terminal mode back the way it was */
	suspend_curses();
}
コード例 #2
0
ファイル: curses.c プロジェクト: DragonQuan/minix3
/* Shut down the Curses package. */
void endwin()
{
	/* change the terminal mode back the way it was */
	suspend_curses();
#if AMIGA
	amiclosewin();
#endif
}
コード例 #3
0
ファイル: curses.c プロジェクト: Edwin-Edward/elks
void endwin()
{
	/* change the terminal mode back the way it was */
	suspend_curses();
}