diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-28 02:18:06 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-28 02:18:06 +0100 |
commit | 083b0b53e450f317ca6e99cc1d077b10a5ac7d4d (patch) | |
tree | e6d9a96901caa2abbb37644fff4311d8d1c0f572 /src/blog/termios/disable-xoff-xon.diff | |
parent | 8f2f9f53b88c451d8b8cb3aa7ee4302ef4c9278d (diff) |
Add a new article on termios
Diffstat (limited to 'src/blog/termios/disable-xoff-xon.diff')
-rw-r--r-- | src/blog/termios/disable-xoff-xon.diff | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/blog/termios/disable-xoff-xon.diff b/src/blog/termios/disable-xoff-xon.diff new file mode 100644 index 0000000..482cca7 --- /dev/null +++ b/src/blog/termios/disable-xoff-xon.diff @@ -0,0 +1,16 @@ + #include <curses.h> + #include <stdio.h> ++#include <termios.h> ++#include <unistd.h> + #include <vis.h> + + int + main(void) + { ++ struct termios tp; ++ tcgetattr(STDIN_FILENO, &tp); ++ tp.c_iflag &= ~(IXANY | IXON | IXOFF); ++ tcsetattr(STDIN_FILENO, TCSANOW, &tp); ++ + initscr(); /* Init screen */ + noecho(); /* Don’t echo keypresses */ |