cfgetospeed.c 270 B

1234567891011121314151617181920212223242526
  1. #include <termios.h>
  2. speed_t
  3. cfgetospeed(const struct termios *p)
  4. {
  5. return B0;
  6. }
  7. int
  8. cfsetospeed(struct termios *p, speed_t s)
  9. {
  10. return 0;
  11. }
  12. speed_t
  13. cfgetispeed(const struct termios *p)
  14. {
  15. return B0;
  16. }
  17. int
  18. cfsetispeed(struct termios *p, speed_t s)
  19. {
  20. return 0;
  21. }