mirror of
https://github.com/tbsdtv/media_build.git
synced 2025-07-23 04:13:02 +02:00
15 lines
253 B
C
15 lines
253 B
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/select.h>
|
|
#include <termios.h>
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
|
|
void reset_terminal_mode();
|
|
void set_conio_terminal_mode();
|
|
int kbhit();
|
|
int kbgetchar();
|
|
char getch(void);
|
|
|