blob: 55fa6f55c0ecb4c9ecdb84dfbf61da12b5813579 [file] [log] [blame]
Rich Felker126f58b2016-07-03 15:01:04 -04001#define _BSD_SOURCE
Rich Felker0b44a032011-02-12 00:22:29 -05002#include <termios.h>
3#include <sys/ioctl.h>
4
5speed_t cfgetospeed(const struct termios *tio)
6{
7 return tio->c_cflag & CBAUD;
8}
9
10speed_t cfgetispeed(const struct termios *tio)
11{
12 return cfgetospeed(tio);
13}