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

  1. @node tell, io
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <io.h>
  6.  
  7. off_t tell(int file);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. This function returns the location of the file pointer for @var{file}. 
  13.  
  14. @subheading Return Value
  15.  
  16. The file pointer, or -1 on error.
  17.  
  18. @subheading Example
  19.  
  20. @example
  21. off_t q = tell(fd);
  22. @end example
  23.  
  24.