From bf4148f4351584bc97b26d8efc7bea74c2ab1b8a Mon Sep 17 00:00:00 2001 From: EliteTK Date: Tue, 7 Oct 2014 23:35:09 +0100 Subject: Added GPL header to files (which I'm mostly sure I wrote) Resolves #1 --- ncurses.c | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 ncurses.c (limited to 'ncurses.c') diff --git a/ncurses.c b/ncurses.c deleted file mode 100644 index ad7dced..0000000 --- a/ncurses.c +++ /dev/null @@ -1,32 +0,0 @@ -#include - -int main() -{ - int ch; - - initscr(); /* Start curses mode */ - raw(); /* Line buffering disabled */ - keypad(stdscr, TRUE); /* We get F1, F2 etc.. */ - noecho(); /* Don't echo() while we do getch */ - - printw("Type any character to see it in bold\n"); - ch = getch(); /* If raw() hadn't been called - * we have to press enter before it - * gets to the program */ - if(ch == KEY_F(1)) /* Without keypad enabled this will */ - printw("F1 Key pressed");/* not get to us either */ - /* Without noecho() some ugly escape - * charachters might have been printed - * on screen */ - else - { printw("The pressed key is "); - attron(A_BOLD); - printw("%c", ch); - attroff(A_BOLD); - } - refresh(); /* Print it on to the real screen */ - getch(); /* Wait for user input */ - endwin(); /* End curses mode */ - - return 0; -} -- cgit v1.2.3-54-g00ecf