1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
.\" Copyright (c) 1990, 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
.\" This code is derived from software contributed to Berkeley by
.\" Chris Torek and the American National Standards Committee X3,
.\" on Information Processing Systems.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the University of
.\" California, Berkeley and its contributors.
.\" 4. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" @(#)fseek.3 6.11 (Berkeley) 6/29/91
.\"
.\" Converted for Linux, Mon Nov 29 15:22:01 1993, faith@cs.unc.edu
.\"
.TH FSEEK 3 "29 de novembro de 1993" "BSD MANPAGE" "Manual do Programador Linux"
.SH NOME
fgetpos, fseek, fsetpos, ftell, rewind \- reposiciona um fluxo
.SH SINOPSE
.B #include <stdio.h>
.sp
.BI "int fseek( FILE *" stream ", long " offset ", int " whence );
.br
.BI "long ftell( FILE *" stream );
.br
.BI "void rewind( FILE *" stream );
.br
.BI "int fgetpos( FILE *" stream ", fpos_t *" pos );
.br
.BI "int fsetpos( FILE *" stream ", fpos_t *" pos );
.SH DESCRIO
A funo
.B fseek
seta o indicador de posio de arquivo do fluxo apontado por
.IR stream .
A nova posio, medida em bytes, obtida pelo acrscimo de
.I offset
bytes posio especificada por
.IR whence .
Se
.I whence
setado para
.BR SEEK_SET ,
.BR SEEK_CUR ,
ou
.BR SEEK_END ,
o offset relativo ao incio do arquivo, ao indicador de posio corrente, ou ao fim de arquivo,
respectivamente. Uma chamada bem-sucedida funo
.B fseek
limpa o indicador de fim de arquivo para o fluxo e desfaz qualquer efeito da funo
.BR ungetc (3)
no mesmo fluxo.
.PP
A funo
.B ftell
obtm o valor corrente do indicador de posio de arquivo do fluxo apontado por
.IR stream .
.PP
A funo
.B rewind
seta o indicador de posio de arquivo do fluxo apontado por
.I stream
para o incio do arquivo. equivalente a:
.PP
.RS
(void)fseek(stream, 0L, SEEK_SET)
.RE
.PP
exceto pelo fato de que o indicador de erro do fluxo tambm limpo (veja
.BR clearerr (3)).
.PP
As funes
.B fgetpos
e
.B fsetpos
so interfaces alternativas equivalentes a
.B ftell
e
.B fseek
(com whence setado para
.BR SEEK_SET ),
configurando e armazenando o valor corrente do offset do arquivo do objeto referenciado
por
.IR pos .
Em alguns sistemas no-UNIX, um objeto
.B fpos_t
pode ser um objeto complexo e estas rotinas podem ser a nica maneira portvel de reposicionar
um fluxo de texto.
.SH "VALORES DE RETORNO"
A funo
.B rewind
no retorna valor. Em caso de trmino bem-sucedido,
.BR fgetpos ,
.BR fseek ,
.B fsetpos
retornam 0,
e
.B ftell
retorna o offset corrente. Caso contrrio, \-1 retornado e a varivel global
errno setada para indicar o erro.
.SH ERROS
.TP
.B EBADF
O
.I fluxo
especificado no um fluxo vasculhvel.
.TP
.B EINVAL
O argumento
.I whence
de
.B fseek
no era
.BR SEEK_SET ,
.BR SEEK_END ,
ou
.BR SEEK_CUR .
.PP
As funes
.BR fgetpos ,
.BR fseek ,
.BR fsetpos ,
e
.B ftell
tambm podem falhar e setar
.I errno
para qualquer um dos erros especificados para as rotinas
.BR fflush (3),
.BR fstat (2),
.BR lseek (2),
e
.BR malloc (3).
.SH "VEJA TAMBM"
.BR lseek (2)
.SH PADRES
As funes
.BR fgetpos ,
.BR fsetpos ,
.BR fseek ,
.BR ftell ,
e
.BR rewind
esto em conformidade com ANSI X3.159-1989 (``ANSI C'').
.SH TRADUO PARA A LNGUA PORTUGUESA
\&\fR\&\f(CWRUBENS DE JESUS NOGUEIRA <darkseid99@usa.net> (traduo)\fR
\&\fR\&\f(CWXXXXXX XX XXXXX XXXXXXXX <xxxxxxxxxx@xxx.xxx> (reviso)\fR
|