Update copyright notices with scripts/update-copyrights
[glibc.git] / manual / examples / termios.c
blob05636c23cd75f3fdd5ac82ec9f170844434afb44
1 /* Noncanonical Mode Example
2 Copyright (C) 1991-2014 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, if not, see <http://www.gnu.org/licenses/>.
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <termios.h>
23 /* Use this variable to remember original terminal attributes. */
25 struct termios saved_attributes;
27 void
28 reset_input_mode (void)
30 tcsetattr (STDIN_FILENO, TCSANOW, &saved_attributes);
33 void
34 set_input_mode (void)
36 struct termios tattr;
37 char *name;
39 /* Make sure stdin is a terminal. */
40 if (!isatty (STDIN_FILENO))
42 fprintf (stderr, "Not a terminal.\n");
43 exit (EXIT_FAILURE);
46 /* Save the terminal attributes so we can restore them later. */
47 tcgetattr (STDIN_FILENO, &saved_attributes);
48 atexit (reset_input_mode);
50 /*@group*/
51 /* Set the funny terminal modes. */
52 tcgetattr (STDIN_FILENO, &tattr);
53 tattr.c_lflag &= ~(ICANON|ECHO); /* Clear ICANON and ECHO. */
54 tattr.c_cc[VMIN] = 1;
55 tattr.c_cc[VTIME] = 0;
56 tcsetattr (STDIN_FILENO, TCSAFLUSH, &tattr);
58 /*@end group*/
60 int
61 main (void)
63 char c;
65 set_input_mode ();
67 while (1)
69 read (STDIN_FILENO, &c, 1);
70 if (c == '\004') /* @kbd{C-d} */
71 break;
72 else
73 putchar (c);
76 return EXIT_SUCCESS;