6 static struct termios term
;
9 void secure_terminal(void)
11 /* Disable terminal echoing and signals. */
12 (void) tcgetattr(STDIN_FILENO
, &term
);
14 term
.c_lflag
&= ~(ECHO
| ISIG
);
15 (void) tcsetattr(STDIN_FILENO
, TCSANOW
, &term
);
18 void restore_terminal(void)
20 /* Restore the terminal. */
22 (void) tcsetattr(STDIN_FILENO
, TCSANOW
, &term
);