37 typedef unsigned int tcflag_t;
 
   38 typedef unsigned int cc_t;
 
   39 typedef unsigned int speed_t;
 
   60 #define ONLRET 0000040  
   64 #define ICANON  0000002  
   68 #define ECHOCTL 0001000  
   69 #define ECHOKE  0004000  
   77 #define CSTOPB  0000100  
   79 #define PARENB  0000400  
   80 #define PARODD  0001000  
  133 int tcsetattr(
int fd, 
int optional_actions, 
const struct termios *termios_p);
 
  135 speed_t cfgetispeed(
const struct termios *termios_p);
 
  136 int cfsetispeed(
struct termios *termios_p, speed_t speed);
 
  137 void cfmakeraw(
struct termios *termios_p);
 
Definition: termios_types.h:98
 
int tcsetattr(int fd, int optional_actions, const struct termios *termios_p)
Change la configuration du terminal. 
Definition: termios.c:39
 
int tcgetattr(int fd, struct termios *termios_p)
Récupère la configuration du terminal. 
Definition: termios.c:34