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 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)fseek.3 8.1 (Berkeley) 6/4/93
33 .\" $FreeBSD: src/lib/libc/stdio/fseek.3,v 1.27 2007/06/18 02:13:04 ache Exp $
46 .Nd reposition a stream
53 .Fa "FILE *restrict stream"
54 .Fa "fpos_t *restrict pos"
71 .Fa "const fpos_t *pos"
88 function sets the file position indicator for the stream pointed
91 The new position, measured in bytes, is obtained by adding
93 bytes to the position specified by
102 the offset is relative to the
103 start of the file, the current position indicator, or end-of-file,
105 A successful call to the
107 function clears the end-of-file indicator for the stream and undoes
112 functions on the same stream.
117 obtains the current value of the file position indicator for the
123 function sets the file position indicator for the stream pointed
126 to the beginning of the file.
129 .Dl (void)fseek(stream, 0L, SEEK_SET)
131 except that the error indicator for the stream is also cleared
137 does not return a value,
138 an application wishing to detect errors should clear
144 is non-zero, assume an error has occurred.
148 function is identical to
157 function is identical to
167 are alternate interfaces for retrieving and setting the current position in
172 except that the current position is stored in an opaque object of
177 These functions provide a portable way to seek to offsets larger than
178 those that can be represented by a
180 They may also store additional state information in the
182 object to facilitate seeking within files containing multibyte
183 characters with state-dependent encodings.
186 has traditionally been an integral type,
187 applications cannot assume that it is;
188 in particular, they must not perform arithmetic on objects
191 If the stream is a wide character stream (see
193 the position specified by the combination of
197 must contain the first byte of a multibyte sequence.
204 .Rv -std fgetpos fseek fseeko fsetpos
206 Upon successful completion,
210 return the current offset.
211 Otherwise, \-1 is returned and the global variable
213 is set to indicate the error.
220 is not a seekable stream.
224 argument is invalid or
225 the resulting file-position
226 indicator would be set to a negative value.
228 The resulting file offset would be a value which
229 cannot be represented correctly in an object of type
242 The file descriptor underlying stream is associated with a pipe or FIFO
243 or file-position indicator value is unspecified
257 may also fail and set
259 for any of the errors specified for the routines
266 .Fd #include <stdio.h>
267 .Fd #include <sys/types.h>
279 supplies the definition for