getch/src/Console/Resources/getch.c

23 lines
498 B
C
Raw Normal View History

2020-12-22 14:19:32 -08:00
#include <stdio.h>
#include <termios.h>
#include <unistd.h>
/* reads from keypress, doesn't echo */
2021-01-07 13:56:08 -08:00
int _getch(void)
2020-12-22 14:19:32 -08:00
{
struct termios oldattr, newattr;
int ch;
tcgetattr( STDIN_FILENO, &oldattr );
newattr = oldattr;
2021-01-07 14:43:35 -08:00
cfmakeraw(&newattr);
//newattr.c_lflag &= ~( ICANON | ECHO );
//tcsetattr( STDIN_FILENO, TCSANOW, &newattr );
2020-12-22 14:19:32 -08:00
ch = getchar();
tcsetattr( STDIN_FILENO, TCSANOW, &oldattr );
return ch;
2021-01-07 13:56:08 -08:00
}
2021-01-07 14:13:05 -08:00
int _ungetch(char ch)
2021-01-07 13:56:08 -08:00
{
return ungetc(ch, stdin);
2020-12-22 14:19:32 -08:00
}