Introduction
Statistics
Contact
Development
Disclaimer
Help
bitreich.org home page
#include <stdio.h>
#include <curses.h>
main()
{
int c;
char s[80];
initscr();
raw();
noecho();
keypad(stdscr, TRUE);
while (1) {
c = getch();
if (c == KEY_LEFT) {
addstr("home\n");
}
if (c == KEY_END) {
exit(0);
}
}
}