view console/libgnt/test/key.c @ 15494:aa5a1237f42e

Didn't mean to ci that
author Sean Egan <seanegan@gmail.com>
date Fri, 02 Feb 2007 22:16:10 +0000
parents 6dbff723fabc
children 50c25be2563b
line wrap: on
line source

#include <ncurses.h>

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

	noecho();

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

	endwin();
	return 0;
}