Created
March 13, 2018 14:25
-
-
Save marty1885/7f27ffecee18ea7a45d3a5fd82f0b48a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <termios.h> | |
#include <stdio.h> | |
static struct termios old, new; | |
/* Initialize new terminal i/o settings */ | |
void initTermios(int echo) | |
{ | |
tcgetattr(0, &old); /* grab old terminal i/o settings */ | |
new = old; /* make new settings same as old settings */ | |
new.c_lflag &= ~ICANON; /* disable buffered i/o */ | |
new.c_lflag &= echo ? ECHO : ~ECHO; /* set echo mode */ | |
tcsetattr(0, TCSANOW, &new); /* use these new terminal i/o settings now */ | |
} | |
/* Restore old terminal i/o settings */ | |
void resetTermios(void) | |
{ | |
tcsetattr(0, TCSANOW, &old); | |
} | |
/* Read 1 character - echo defines echo mode */ | |
char getch_(int echo) | |
{ | |
char ch; | |
initTermios(echo); | |
ch = getchar(); | |
resetTermios(); | |
return ch; | |
} | |
/* Read 1 character without echo */ | |
char getch(void) | |
{ | |
return getch_(0); | |
} | |
/* Read 1 character with echo */ | |
char getche(void) | |
{ | |
return getch_(1); | |
} | |
#define _getch getch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment