home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / stdio / fsetpos.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  381 b   |  22 lines

  1. @node fsetpos, stdio
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <stdio.h>
  6.  
  7. int fsetpos(FILE *file, const fpos_t *offset);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. This function moves the file pointer for @var{file} to position
  13. @var{offset}, as recorded by @code{fgetpos}.
  14.  
  15. @xref{fgetpos}.
  16. @xref{fseek}.
  17.  
  18. @subheading Return Value
  19.  
  20. Zero if successful, nonzero if not.
  21.  
  22.