]> git.saurik.com Git - apple/libc.git/blame - stdio/fseek.3
Libc-594.9.5.tar.gz
[apple/libc.git] / stdio / fseek.3
CommitLineData
224c7076
A
1.\" Copyright (c) 1990, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
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.
7.\"
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
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.
23.\"
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
34.\" SUCH DAMAGE.
35.\"
36.\" @(#)fseek.3 8.1 (Berkeley) 6/4/93
37.\" $FreeBSD: src/lib/libc/stdio/fseek.3,v 1.25 2004/03/20 08:38:27 tjr Exp $
38.\"
39.Dd March 19, 2004
40.Dt FSEEK 3
41.Os
42.Sh NAME
43.Nm fgetpos ,
44.Nm fseek ,
45.Nm fseeko ,
46.Nm fsetpos ,
47.Nm ftell ,
48.Nm ftello ,
49.Nm rewind
50.Nd reposition a stream
51.Sh LIBRARY
52.Lb libc
53.Sh SYNOPSIS
54.In stdio.h
55.Ft int
56.Fo fgetpos
57.Fa "FILE *restrict stream"
58.Fa "fpos_t *restrict pos"
59.Fc
60.Ft int
61.Fo fseek
62.Fa "FILE *stream"
63.Fa "long offset"
64.Fa "int whence"
65.Fc
66.Ft int
67.Fo fseeko
68.Fa "FILE *stream"
69.Fa "off_t offset"
70.Fa "int whence"
71.Fc
72.Ft int
73.Fo fsetpos
74.Fa "FILE *stream"
75.Fa "const fpos_t *pos"
76.Fc
77.Ft long
78.Fo ftell
79.Fa "FILE *stream"
80.Fc
81.Ft off_t
82.Fo ftello
83.Fa "FILE *stream"
84.Fc
85.Ft void
86.Fo rewind
87.Fa "FILE *stream"
88.Fc
89.Sh DESCRIPTION
90The
91.Fn fseek
92function sets the file position indicator for the stream pointed
93to by
94.Fa stream .
95The new position, measured in bytes, is obtained by adding
96.Fa offset
97bytes to the position specified by
98.Fa whence .
99If
100.Fa whence
101is set to
102.Dv SEEK_SET ,
103.Dv SEEK_CUR ,
104or
105.Dv SEEK_END ,
106the offset is relative to the
107start of the file, the current position indicator, or end-of-file,
108respectively.
109A successful call to the
110.Fn fseek
111function clears the end-of-file indicator for the stream and undoes
112any effects of the
113.Xr ungetc 3
114and
115.Xr ungetwc 3
116functions on the same stream.
117.Pp
118The
119.Fn ftell
120function
121obtains the current value of the file position indicator for the
122stream pointed to by
123.Fa stream .
124.Pp
125The
126.Fn rewind
127function sets the file position indicator for the stream pointed
128to by
129.Fa stream
130to the beginning of the file.
131It is equivalent to:
132.Pp
133.Dl (void)fseek(stream, 0L, SEEK_SET)
134.Pp
135except that the error indicator for the stream is also cleared
136(see
137.Xr clearerr 3 ) .
138.Pp
139Since
140.Fn rewind
141does not return a value,
142an application wishing to detect errors should clear
143.Va errno ,
144then call
145.Fn rewind ,
146and if
147.Va errno
148is non-zero, assume an error has occurred.
149.Pp
150The
151.Fn fseeko
152function is identical to
153.Fn fseek ,
154except it takes an
155.Fa off_t
156argument
157instead of a
158.Fa long .
159Likewise, the
160.Fn ftello
161function is identical to
162.Fn ftell ,
163except it returns an
164.Fa off_t .
165.Pp
166The
167.Fn fgetpos
168and
169.Fn fsetpos
170functions
171are alternate interfaces for retrieving and setting the current position in
172the file, similar to
173.Fn ftell
174and
175.Fn fseek ,
176except that the current position is stored in an opaque object of
177type
178.Vt fpos_t
179pointed to by
180.Fa pos .
181These functions provide a portable way to seek to offsets larger than
182those that can be represented by a
183.Vt long int .
184They may also store additional state information in the
185.Vt fpos_t
186object to facilitate seeking within files containing multibyte
187characters with state-dependent encodings.
188Although
189.Vt fpos_t
190has traditionally been an integral type,
191applications cannot assume that it is;
192in particular, they must not perform arithmetic on objects
193of this type.
194.Pp
195If the stream is a wide character stream (see
196.Xr fwide 3 ) ,
197the position specified by the combination of
198.Fa offset
199and
200.Fa whence
201must contain the first byte of a multibyte sequence.
202.Sh RETURN VALUES
203The
204.Fn rewind
205function
206returns no value.
207.Pp
208.Rv -std fgetpos fseek fseeko fsetpos
209.Pp
210Upon successful completion,
211.Fn ftell
212and
213.Fn ftello
214return the current offset.
215Otherwise, \-1 is returned and the global variable
216.Va errno
217is set to indicate the error.
218.Sh ERRORS
219.Bl -tag -width Er
220.It Bq Er EBADF
221The
222.Fa stream
223argument
224is not a seekable stream.
225.It Bq Er EINVAL
226The
227.Fa whence
228argument is invalid or
229the resulting file-position
230indicator would be set to a negative value.
231.It Bq Er EOVERFLOW
232The resulting file offset would be a value which
233cannot be represented correctly in an object of type
234.Fa off_t
235for
236.Fn fseeko
237and
238.Fn ftello
239or
240.Fa long
241for
242.Fn fseek
243and
244.Fn ftell .
245.It Bq Er ESPIPE
246The file descriptor underlying stream is associated with a pipe or FIFO
247or file-position indicator value is unspecified
248(see
249.Xr ungetc 3 ) .
250.El
251.Pp
252The functions
253.Fn fgetpos ,
254.Fn fseek ,
255.Fn fseeko ,
256.Fn fsetpos ,
257.Fn ftell ,
258and
259.Fn ftello
260may also fail and set
261.Va errno
262for any of the errors specified for the routines
263.Xr fflush 3 ,
264.Xr fstat 2 ,
265.Xr lseek 2 ,
266and
267.Xr malloc 3 .
268.Sh LEGACY SYNOPSIS
269.Fd #include <stdio.h>
270.Fd #include <sys/types.h>
271.Pp
272.Ft int
273.br
274.Fo fseeko
275.Fa "FILE *stream"
276.Fa "off_t offset"
277.Fa "int whence"
278.Fc ;
279.Pp
280The include file
281.In sys/types.h
282supplies the definition for
283.Vt off_t .
284.Sh SEE ALSO
285.Xr lseek 2 ,
286.Xr clearerr 3 ,
287.Xr fwide 3 ,
288.Xr ungetc 3 ,
289.Xr ungetwc 3 ,
290.Xr compat 5
291.Sh STANDARDS
292The
293.Fn fgetpos ,
294.Fn fsetpos ,
295.Fn fseek ,
296.Fn ftell ,
297and
298.Fn rewind
299functions
300conform to
301.St -isoC .
302.Pp
303The
304.Fn fseeko
305and
306.Fn ftello
307functions conform to
308.St -p1003.1-2001 .