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