1 .\" Copyright (c) 1990, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Chris Torek and the American National Standards Committee X3,
6 .\" on Information Processing Systems.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
16 .\" 3. All advertising materials mentioning features or use of this software
17 .\" must display the following acknowledgement:
18 .\" This product includes software developed by the University of
19 .\" California, Berkeley and its contributors.
20 .\" 4. Neither the name of the University nor the names of its contributors
21 .\" may be used to endorse or promote products derived from this software
22 .\" without specific prior written permission.
24 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 .\" @(#)fseek.3 8.1 (Berkeley) 6/4/93
37 .\" $FreeBSD: src/lib/libc/stdio/fseek.3,v 1.24 2002/12/19 09:40:24 ru Exp $
50 .Nd reposition a stream
56 .Fn fseek "FILE *stream" "long offset" "int whence"
58 .Fn ftell "FILE *stream"
60 .Fn rewind "FILE *stream"
62 .Fn fgetpos "FILE * restrict stream" "fpos_t * restrict pos"
64 .Fn fsetpos "FILE *stream" "const fpos_t *pos"
67 .Fn fseeko "FILE *stream" "off_t offset" "int whence"
69 .Fn ftello "FILE *stream"
73 function sets the file position indicator for the stream pointed
76 The new position, measured in bytes, is obtained by adding
78 bytes to the position specified by
87 the offset is relative to the
88 start of the file, the current position indicator, or end-of-file,
90 A successful call to the
92 function clears the end-of-file indicator for the stream and undoes
97 functions on the same stream.
102 obtains the current value of the file position indicator for the
108 function sets the file position indicator for the stream pointed
111 to the beginning of the file.
114 .Dl (void)fseek(stream, 0L, SEEK_SET)
116 except that the error indicator for the stream is also cleared
122 does not return a value,
123 an application wishing to detect errors should clear
129 is non-zero, assume an error has occurred.
133 function is identical to
142 function is identical to
152 are alternate interfaces equivalent to
158 setting and storing the current value of
159 the file offset into or from the object referenced by
165 object may be a complex object
166 and these routines may be the only way to portably reposition a text stream.
168 If the stream is a wide character stream (see
170 the position specified by the combination of
174 must contain the first byte of a multibyte sequence.
181 .Rv -std fgetpos fseek fseeko fsetpos
183 Upon successful completion,
187 return the current offset.
188 Otherwise, \-1 is returned and the global variable
190 is set to indicate the error.
197 is not a seekable stream.
201 argument is invalid or
202 the resulting file-position
203 indicator would be set to a negative value.
205 The resulting file offset would be a value which
206 cannot be represented correctly in an object of type
219 The file descriptor underlying stream is associated with a pipe or FIFO
220 or file-position indicator value is unspecified
233 may also fail and set
235 for any of the errors specified for the routines