linux_termios
linux_cfsetspeed(struct linux_termios *t, linux_speed_t speed)
linux_cfmakeraw(struct linux_termios *t)
linux_tcgetattr(int fd, struct linux_termios *t)
linux_tcsetattr(int fd, int action, struct linux_termios *t)
int linux_cfsetspeed(struct linux_termios *t, linux_speed_t speed);
void linux_cfmakeraw(struct linux_termios *);
int linux_tcgetattr(int, struct linux_termios *);
int linux_tcsetattr(int, int, struct linux_termios *);
struct linux_termios orig_termios, raw_termios;
struct linux_termios termios;
#define LINUX_TCGETS _LINUX_IOR('t', 19, struct linux_termios)
#define LINUX_TCSETS _LINUX_IOW('t', 20, struct linux_termios)
#define LINUX_TCSETSW _LINUX_IOW('t', 21, struct linux_termios)
#define LINUX_TCSETSF _LINUX_IOW('t', 22, struct linux_termios)
#define LINUX_TCGETS _LINUX_IOR('t', 19, struct linux_termios)
#define LINUX_TCSETS _LINUX_IOW('t', 20, struct linux_termios)
#define LINUX_TCSETSW _LINUX_IOW('t', 21, struct linux_termios)
#define LINUX_TCSETSF _LINUX_IOW('t', 22, struct linux_termios)
struct linux_termios tmplts;
struct linux_termios;
static void linux_termios_to_bsd_termios(struct linux_termios *,
struct linux_termios *);
linux_termios_to_bsd_termios(struct linux_termios *lts, struct termios *bts)
bsd_termios_to_linux_termios(struct termios *bts, struct linux_termios *lts)