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

  1. @node _write, file system
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <io.h>
  6.  
  7. ssize_t _write(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 write function call, int
  13. 0x21, %ah = 0x40.  No conversion is done on the data; it is written as
  14. raw binary data.
  15.  
  16. @subheading Return Value
  17.  
  18. The number of bytes written.
  19.  
  20.