| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #include <ctype.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <termios.h>
- #include <unistd.h>
- struct termios orig_termios;
- void die(const char *s) {
- perror(s);
- exit(1);
- }
- void disableRawMode() {
- tcsetattr(STDIN_FILENO, TCSAFLUSH, &orig_termios);
- }
- void enableRawMode() {
- tcgetattr(STDIN_FILENO, &orig_termios);
- atexit(disableRawMode);
- struct termios raw = orig_termios;
- raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
- raw.c_oflag &= ~(OPOST);
- raw.c_cflag |= (CS8);
- raw.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG);
- tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw);
- raw.c_cc[VMIN] = 0;
- raw.c_cc[VTIME] = 1;
- }
- int main() {
- enableRawMode();
- while (1) {
- char c = '\0';
- read(STDIN_FILENO, &c, 1);
- if (iscntrl(c)) {
- printf("%d\r\n", c);
- } else {
- printf("%d ('%c')\r\n", c, c);
- }
- if (c == 'q') break;
- }
- return 0;
- }
|