1 #include <sys/ioctl.h>
2 #include <termios.h>
3 
cfgetospeed(const struct termios * tio)4 speed_t cfgetospeed(const struct termios* tio) {
5     return tio->c_cflag & CBAUD;
6 }
7 
cfgetispeed(const struct termios * tio)8 speed_t cfgetispeed(const struct termios* tio) {
9     return cfgetospeed(tio);
10 }
11