OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man3 / fseeko.3
1 .\" Copyright 2001 Andries Brouwer <aeb@cwi.nl>.
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH FSEEKO 3  2014-03-20 "" "Linux Programmer's Manual"
26 .SH NAME
27 fseeko, ftello \- seek to or report file position
28 .SH SYNOPSIS
29 .nf
30 .B #include <stdio.h>
31 .sp
32 .BI "int fseeko(FILE *" stream ", off_t " offset ", int " whence );
33 .sp
34 .BI "off_t ftello(FILE *" stream );
35 .BI
36 .fi
37 .sp
38 .in -4n
39 Feature Test Macro Requirements for glibc (see
40 .BR feature_test_macros (7)):
41 .in
42 .sp
43 .BR fseeko (),
44 .BR ftello ():
45 .br
46 .RS 4
47 .ad l
48 _FILE_OFFSET_BITS\ ==\ 64 ||
49 _POSIX_C_SOURCE\ >=\ 200112L || _XOPEN_SOURCE\ >=\ 600
50 .br
51 (defining the obsolete _LARGEFILE_SOURCE macro also works)
52 .RE
53 .ad
54 .SH DESCRIPTION
55 The
56 .BR fseeko ()
57 and
58 .BR ftello ()
59 functions are identical to
60 .BR fseek (3)
61 and
62 .BR ftell (3)
63 (see
64 .BR fseek (3)),
65 respectively, except that the
66 .I offset
67 argument of
68 .BR fseeko ()
69 and the return value of
70 .BR ftello ()
71 is of type
72 .I off_t
73 instead of
74 .IR long .
75 .LP
76 On many architectures both
77 .IR off_t
78 and
79 .I long
80 are 32-bit types,
81 but compilation with
82 .RS
83 .nf
84
85 #define _FILE_OFFSET_BITS 64
86 .fi
87 .RE
88 .PP
89 will turn
90 .I off_t
91 into a 64-bit type.
92 .SH RETURN VALUE
93 On successful completion,
94 .BR fseeko ()
95 returns 0, while
96 .BR ftello ()
97 returns the current offset.
98 Otherwise, \-1 is returned and
99 .I errno
100 is set to indicate the error.
101 .SH ERRORS
102 See the ERRORS in
103 .BR fseek (3).
104 .SH CONFORMING TO
105 SUSv2, POSIX.1-2001.
106 .SH NOTES
107 These functions are found on System V-like systems.
108 They are not present in libc4, libc5, glibc 2.0
109 but are available since glibc 2.1.
110 .SH SEE ALSO
111 .BR fseek (3)
112 .SH COLOPHON
113 This page is part of release 3.68 of the Linux
114 .I man-pages
115 project.
116 A description of the project,
117 information about reporting bugs,
118 and the latest version of this page,
119 can be found at
120 \%http://www.kernel.org/doc/man\-pages/.