blob: 8b7e91fb0d267f634e2795143a1dd173720e49fe (
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; /* FIXME */
}
/*
POSIX(1)
*/
|