OLD | NEW |
(Empty) | |
| 1 struct termios |
| 2 { |
| 3 tcflag_t c_iflag; |
| 4 tcflag_t c_oflag; |
| 5 tcflag_t c_cflag; |
| 6 tcflag_t c_lflag; |
| 7 cc_t c_line; |
| 8 cc_t c_cc[NCCS]; |
| 9 speed_t __c_ispeed; |
| 10 speed_t __c_ospeed; |
| 11 }; |
| 12 |
| 13 #define VINTR 0 |
| 14 #define VQUIT 1 |
| 15 #define VERASE 2 |
| 16 #define VKILL 3 |
| 17 #define VEOF 4 |
| 18 #define VTIME 5 |
| 19 #define VMIN 6 |
| 20 #define VSWTC 7 |
| 21 #define VSTART 8 |
| 22 #define VSTOP 9 |
| 23 #define VSUSP 10 |
| 24 #define VEOL 11 |
| 25 #define VREPRINT 12 |
| 26 #define VDISCARD 13 |
| 27 #define VWERASE 14 |
| 28 #define VLNEXT 15 |
| 29 #define VEOL2 16 |
| 30 |
| 31 #define IGNBRK 0000001 |
| 32 #define BRKINT 0000002 |
| 33 #define IGNPAR 0000004 |
| 34 #define PARMRK 0000010 |
| 35 #define INPCK 0000020 |
| 36 #define ISTRIP 0000040 |
| 37 #define INLCR 0000100 |
| 38 #define IGNCR 0000200 |
| 39 #define ICRNL 0000400 |
| 40 #define IUCLC 0001000 |
| 41 #define IXON 0002000 |
| 42 #define IXANY 0004000 |
| 43 #define IXOFF 0010000 |
| 44 #define IMAXBEL 0020000 |
| 45 #define IUTF8 0040000 |
| 46 |
| 47 #define OPOST 0000001 |
| 48 #define OLCUC 0000002 |
| 49 #define ONLCR 0000004 |
| 50 #define OCRNL 0000010 |
| 51 #define ONOCR 0000020 |
| 52 #define ONLRET 0000040 |
| 53 #define OFILL 0000100 |
| 54 #define OFDEL 0000200 |
| 55 #define NLDLY 0000400 |
| 56 #define NL0 0000000 |
| 57 #define NL1 0000400 |
| 58 #define CRDLY 0003000 |
| 59 #define CR0 0000000 |
| 60 #define CR1 0001000 |
| 61 #define CR2 0002000 |
| 62 #define CR3 0003000 |
| 63 #define TABDLY 0014000 |
| 64 #define TAB0 0000000 |
| 65 #define TAB1 0004000 |
| 66 #define TAB2 0010000 |
| 67 #define TAB3 0014000 |
| 68 #define BSDLY 0020000 |
| 69 #define BS0 0000000 |
| 70 #define BS1 0020000 |
| 71 #define FFDLY 0100000 |
| 72 #define FF0 0000000 |
| 73 #define FF1 0100000 |
| 74 |
| 75 #define VTDLY 0040000 |
| 76 #define VT0 0000000 |
| 77 #define VT1 0040000 |
| 78 |
| 79 #define B0 0000000 |
| 80 #define B50 0000001 |
| 81 #define B75 0000002 |
| 82 #define B110 0000003 |
| 83 #define B134 0000004 |
| 84 #define B150 0000005 |
| 85 #define B200 0000006 |
| 86 #define B300 0000007 |
| 87 #define B600 0000010 |
| 88 #define B1200 0000011 |
| 89 #define B1800 0000012 |
| 90 #define B2400 0000013 |
| 91 #define B4800 0000014 |
| 92 #define B9600 0000015 |
| 93 #define B19200 0000016 |
| 94 #define B38400 0000017 |
| 95 |
| 96 #define B57600 0010001 |
| 97 #define B115200 0010002 |
| 98 #define B230400 0010003 |
| 99 #define B460800 0010004 |
| 100 #define B500000 0010005 |
| 101 #define B576000 0010006 |
| 102 #define B921600 0010007 |
| 103 #define B1000000 0010010 |
| 104 #define B1152000 0010011 |
| 105 #define B1500000 0010012 |
| 106 #define B2000000 0010013 |
| 107 #define B2500000 0010014 |
| 108 #define B3000000 0010015 |
| 109 #define B3500000 0010016 |
| 110 #define B4000000 0010017 |
| 111 |
| 112 #define CBAUD 0010017 |
| 113 |
| 114 #define CSIZE 0000060 |
| 115 #define CS5 0000000 |
| 116 #define CS6 0000020 |
| 117 #define CS7 0000040 |
| 118 #define CS8 0000060 |
| 119 #define CSTOPB 0000100 |
| 120 #define CREAD 0000200 |
| 121 #define PARENB 0000400 |
| 122 #define PARODD 0001000 |
| 123 #define HUPCL 0002000 |
| 124 #define CLOCAL 0004000 |
| 125 |
| 126 #define ISIG 0000001 |
| 127 #define ICANON 0000002 |
| 128 #define ECHO 0000010 |
| 129 #define ECHOE 0000020 |
| 130 #define ECHOK 0000040 |
| 131 #define ECHONL 0000100 |
| 132 #define NOFLSH 0000200 |
| 133 #define TOSTOP 0000400 |
| 134 #define IEXTEN 0100000 |
| 135 |
| 136 #define ECHOCTL 0001000 |
| 137 #define ECHOPRT 0002000 |
| 138 #define ECHOKE 0004000 |
| 139 #define FLUSHO 0010000 |
| 140 #define PENDIN 0040000 |
| 141 |
| 142 #define TCOOFF 0 |
| 143 #define TCOON 1 |
| 144 #define TCIOFF 2 |
| 145 #define TCION 3 |
| 146 |
| 147 #define TCIFLUSH 0 |
| 148 #define TCOFLUSH 1 |
| 149 #define TCIOFLUSH 2 |
| 150 |
| 151 #define TCSANOW 0 |
| 152 #define TCSADRAIN 1 |
| 153 #define TCSAFLUSH 2 |
| 154 |
| 155 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) |
| 156 #define CBAUDEX 0010000 |
| 157 #define CRTSCTS 020000000000 |
| 158 #define EXTPROC 0200000 |
| 159 #define XTABS 0014000 |
| 160 #endif |
OLD | NEW |