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