Mercurial > pidgin
view finch/libgnt/test/key.c @ 17460:8622d1233e0a
Using g_strstr_len(x, strlen(x), ...) is dumb.
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 04 Jun 2007 00:55:19 +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; }