Mercurial > pidgin.yaz
view finch/libgnt/test/key.c @ 19146:5ff1231993af
Added sound profiles
author | Eric Polino <aluink@pidgin.im> |
---|---|
date | Tue, 10 Jul 2007 16:10:06 +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; }