freebsd_amp_hwpstate/lib/libncurses/TESTS/test.c

28 lines
284 B
C
Raw Normal View History

#include <ncurses.h>
1995-05-30 05:51:47 +00:00
main()
{
int x, y;
initscr();
cbreak();
1995-05-30 05:51:47 +00:00
nodelay(stdscr, TRUE);
for (y = 0; y < 43; y++)
for (x =0; x < 132; x++) {
move(y,x);
printw("X");
refresh();
if (!getch()) {
beep();
sleep(1);
}
}
nocbreak();
endwin();
}