view finch/libgnt/test/key.c @ 16649:5d9f6a1f4b49

The RPM spec file actually WORKS now. Let's release!
author Stu Tomlinson <stu@nosnilmot.com>
date Sun, 29 Apr 2007 15:23:50 +0000
parents 0e3a8505ebbe
children f104e1d45d85
line wrap: on
line source

#include <ncurses.h>

int main()
{
	int ch;
	initscr();

	noecho();

	while ((ch = getch())) {
		printw("%d ", ch);
		refresh();
	}

	endwin();
	return 0;
}