Altre correzioni.
[gapil.git] / sources / SetTermAttr.c
1 /* SetTermAttr.c
2  * 
3  * Copyright (C) 2002 Simone Piccardi
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /****************************************************************
20  *
21  * Routine SetTermAttr
22  * Routine to set a local attribute for a terminal
23  *
24  * Author: Simone Piccardi
25  * Jun. 2001
26  *
27  * $Id: SetTermAttr.c,v 1.1 2002/10/09 16:59:39 piccardi Exp $ 
28  *
29  ****************************************************************/
30 #include <unistd.h>
31 #include <termios.h>
32 #include <errno.h>
33
34 int SetTermAttr(int fd, tcflag_t flag) 
35 {
36     struct termios values;
37     int res;
38
39     res = tcgetattr (desc, &values);
40     if (res) {
41         perror("Cannot get attributes");
42         return res;
43     }
44     values.c_lflag |= flag;
45     res = tcsetattr (desc, TCSANOW, &values);
46     if (res) {
47         perror("Cannot set attributes");
48         return res;
49     }
50     return 0;
51 }
52 int UnSetTermAttr(int fd, tcflag_t flag) 
53 {
54     struct termios values;
55     int res;
56
57     res = tcgetattr (desc, &values);
58     if (res) {
59         perror("Cannot get attributes");
60         return res;
61     }
62     values.c_lflag &= (~flag);
63     res = tcsetattr (desc, TCSANOW, &values);
64     if (res) {
65         perror("Cannot set attributes");
66         return res;
67     }
68     return 0;
69 }
70