30 #ifndef _TERMIOS_TYPES_H 
   31 #define _TERMIOS_TYPES_H 
   33 typedef unsigned int tcflag_t;
 
   34 typedef unsigned int cc_t;
 
   35 typedef unsigned int speed_t;
 
   56 #define ONLRET 0000040  
   60 #define ICANON  0000002  
   64 #define ECHOCTL 0001000  
   65 #define ECHOKE  0004000  
   73 #define CSTOPB  0000100  
   75 #define PARENB  0000400  
   76 #define PARODD  0001000  
tcflag_t c_lflag
Definition: termios_types.h:102
 
speed_t c_ispeed
Definition: termios_types.h:104
 
tcflag_t c_oflag
Definition: termios_types.h:100
 
tcflag_t c_iflag
Definition: termios_types.h:99
 
tcflag_t c_cflag
Definition: termios_types.h:101