You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
404 B
26 lines
404 B
#include <stdio.h> |
|
#include <stdlib.h> |
|
#include <ncurses.h> |
|
int main(int argc, char *argv[]) |
|
{ |
|
int key; |
|
|
|
if (2 != argc) exit(1); |
|
|
|
initscr(); /* first initialization */ |
|
cbreak(); /* no line buffering */ |
|
noecho(); /* be silent on input */ |
|
keypad(stdscr, TRUE); /* acces touches curseur */ |
|
|
|
mvaddstr(10, 3, argv[1]); |
|
refresh(); |
|
|
|
key = getch(); |
|
|
|
endwin(); |
|
printf("code touche %d\n", key); |
|
|
|
return 0; |
|
} |
|
|
|
|
|
|