home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / languages / netlib / !NetLib / sys / h / filio < prev    next >
Encoding:
Text File  |  1995-05-23  |  363 b   |  13 lines

  1. #ifndef __sys_filio_h
  2. #define __sys_filio_h
  3.  
  4. /* Freenet programmers library - sys/filio.h - 23/5/95 */
  5.  
  6. #include "Internet:sys.h.iocomm"
  7.  
  8. #define FIONREAD _IOR('f', 127, int)   /* Get number of bytes to read */
  9. #define FIONBIO  _IOW('f', 126, int)   /* Set/clear non-blocking i/o */
  10. #define FIOASYNC _IOW('f', 125, int)   /* Set/clear asynchronous i/o */
  11.  
  12. #endif
  13.