12 lines
160 B
C
Executable File
12 lines
160 B
C
Executable File
|
|
|
|
#if defined(_WIN32)
|
|
#include <conio.h> /* getche() */
|
|
|
|
#else
|
|
#include <termios.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
char getche();
|
|
#endif
|