FSEEK.3
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. FSEEK(3)                  Minix Programmer's Manual                   FSEEK(3)
  2. NAME
  3.      fseek, ftell, rewind - reposition a stream
  4. SYNOPSIS
  5.      #include <stdio.h>
  6.      int fseek(FILE *stream, long offset, int ptrname)
  7.      long ftell(FILE *stream)
  8.      void rewind(FILE *stream)
  9. DESCRIPTION
  10.      Fseek sets the position of the next input  or  output  operation  on  the
  11.      stream.  The new position is at the signed distance offset bytes from the
  12.      beginning, the current position, or the end of  the  file,  according  as
  13.      ptrname has the value 0, 1, or 2.
  14.      Fseek undoes any effects of ungetc(3).
  15.      Ftell returns the current value of the offset relative to  the  beginning
  16.      of the file associated with the named stream.  It is measured in bytes on
  17.      UNIX; on some other systems it is a magic cookie, and the only  foolproof
  18.      way to obtain an offset for fseek.
  19.      Rewind(stream) is equivalent to fseek(stream, 0L, 0).
  20. SEE ALSO
  21.      lseek(2), fopen(3).
  22. DIAGNOSTICS
  23.      Fseek returns -1 for improper seeks, otherwise zero.
  24.                               February 24, 1986                              1