summaryrefslogtreecommitdiff
path: root/src/termios/cfgetispeed.c
blob: 6ba31775216f5c4d2664b230d3faa0690ee95f6f (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)
*/