#include #include #include "key.h" int main() { int key; cui_key_enter(); while((key = cui_key_get()) != 'q'){ if(key == 0){ printf("."); }else{ printf("%02x ", key); if(isprint(key)) printf("(%c) ", key); } fflush(stdout); } cui_key_exit(); printf("\n"); return 0; } /* EOF */