cfgetospeed - get output baud rate
#include <termios.h> speed_t cfgetospeed(const struct termios *termios_p);
The cfgetospeed() function extracts the output baud rate from the termios structure to which the termios_p argument points.This function returns exactly the value in the termios data structure, without interpretation.
Upon successful completion, cfgetospeed() returns a value of type speed_t representing the output baud rate.
No errors are defined.
None.
None.
None.
cfgetispeed(), cfsetispeed(), cfsetospeed(), tcgetattr(), <termios.h>, the XBD specification, General Terminal Interface .
Derived from the POSIX.1-1988 standard.