view finch/libgnt/test/key.c @ 19027:15d9031e03b2

- Add get_idlist support to tls_peers CertificatePool
author William Ehlhardt <williamehlhardt@gmail.com>
date Tue, 17 Jul 2007 00:10:11 +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;
}