view finch/libgnt/test/key.c @ 16030:00a4de6880da

I think I'm committing the more recent version of this translation
author Luke Schierer <lschiere@pidgin.im>
date Mon, 09 Apr 2007 13:02:46 +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;
}