home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MISC
/
NETWORK
/
TEL23SRC.ZIP
/
KEYMAP
/
TESTMAP.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1990-08-06
|
380 b
|
17 lines
#include <stdio.h>
#include <stdlib.h>
extern unsigned int n_newgetchar(void );
extern void install_keyboard(void );
extern unsigned char keyboard_type;
main()
{
unsigned int c;
install_keyboard();
printf("keyboard_type=%u\n",(unsigned int)keyboard_type);
while(1) {
c=n_newgetchar();
printf("c=%u, %X\n",c,c);
} /* end while */
} /* end testmap() */