home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / dos / io / _read.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  386 b   |  20 lines

  1. @node _read, file system
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <io.h>
  6.  
  7. ssize_t _read(int fildes, void *buf, size_t nbyte);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. This is a direct connection to the MS-DOS read function call, int
  13. 0x21, %ah = 0x3f.  No conversion is done on the data; it is read as
  14. raw binary data.
  15.  
  16. @subheading Return Value
  17.  
  18. The number of bytes read.
  19.  
  20.