blob: f4a9e3e39e01c6cf3611a6dd01d93983cf7a5afc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <termios.h>
#include "_assert.h"
speed_t cfgetospeed(const struct termios *termios_p)
{
ASSERT_NONNULL(termios_p);
return termios_p->c_oflag & B38400;
}
/*
POSIX(1)
*/
|