home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_07_05 / v7n5041a.txt < prev    next >
Text File  |  1989-04-18  |  1KB  |  28 lines

  1.                    Name
  2.             Octal  of
  3. Attribute   Value  flag    Description
  4. ---------  ------- ------- -----------------------
  5. ISTRIP     0000040 c_iflag Strip the high bit off of the character
  6. IXON       0002000 c_iflag Enables XON/XOFF output control
  7. IXANY      0004000 c_iflag Enables any character (not just XOFF) to 
  8.                            restart output
  9. IXOFF      0010000 c_iflag Enables XON/XOFF input control
  10. B300       0000007 c_cflag 300 baud (Other baud rates
  11. B1200      0000011 c_cflag 1200 baud    are supported)
  12. B2400      0000013 c_cflag 2400 baud
  13. B9600      0000015 c_cflag 9600 baud
  14. B19200     0000016 c_cflag 19200 baud
  15. CS5        0000000 c_cflag 5 bit characters
  16. CS6        0000020 c_cflag 6 bit characters
  17. CS7        0000040 c_cflag 7 bit characters
  18. CS8        0000060 c_cflag 8 bit characters
  19. CSTOPB     0000100 c_cflag Send two stop bits if set, or else one
  20. PARENB     0000400 c_cflag Parity enable
  21. PARODD     0001000 c_cflag Odd parity if set, or else even
  22. HUPCL      0002000 c_cflag Hang up on last close
  23. CTSFLOW    0020000 c_cflag Enable hardware start/stop output control 
  24.                    using the CTS pin (XENIX only)
  25. RTSFLOW    0040000 c_cflag Enable hardware start/stop output control 
  26.                    using the RTS pin (XENIX only)
  27.  
  28.