You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
352 B
C
12 lines
352 B
C
#include <conio.h>
|
|
|
|
/* Both the curses library and the Digital Mars runtime library have
|
|
functions called int getch( void). With the following, code in pdckbd.c
|
|
can call dmc_getch() and get the DMC library version. It is used _only_
|
|
with Digital Mars; other compilers don't have the name collision. */
|
|
|
|
int dmc_getch( )
|
|
{
|
|
return( _getch( ));
|
|
}
|