removing curses test file

This commit is contained in:
Thiago Auler dos Santos 2017-11-26 12:35:11 -02:00
parent 25165ae437
commit 0ab9e5f38d
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
#include <curses.h>
int main()
{
initscr();
noecho();
cbreak();
nodelay(stdscr, TRUE);
int ch = ERR;
while (ch == ERR)
{
ch = getch();
//addch('.');
}
addch(ch);
//refresh();
nodelay(stdscr, FALSE);
getch();
endwin();
}