cfgetospeed.c 204 B

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