home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / posix / termios / cfgtispd.c next >
Encoding:
C/C++ Source or Header  |  1996-09-08  |  273 b   |  17 lines

  1. #include <errno.h>
  2. #include <stddef.h>
  3. #include <termios.h>
  4.  
  5. speed_t
  6. cfgetispeed (const struct termios *termiosp)
  7. {
  8.   /* check arguments */
  9.   if (termiosp == NULL)
  10.     {
  11.       errno = EINVAL;
  12.       return (speed_t) -1;
  13.     }
  14.  
  15.   return termiosp->c_ispeed;
  16. }
  17.