view finch/libgnt/test/key.c @ 18970:3d63bd78675d

- Add CertificatePool struct
author William Ehlhardt <williamehlhardt@gmail.com>
date Thu, 28 Jun 2007 21:29:54 +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;
}