Mercurial > pidgin
view finch/libgnt/test/key.c @ 17418:c5663c1d146f
Link pidgin against gthread again (I only just removed it a few days ago and now it is needed again).
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Fri, 01 Jun 2007 01:20:32 +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; }