fseeko(3) | Library Functions Manual | fseeko(3) |
fseeko, ftello - modifica o informa de la posición del fichero
Biblioteca Estándar C (libc, -lc)
#include <stdio.h>
int fseeko(FILE *flujo, off_t desplto, int origen); off_t ftello(FILE *flujo);
fseeko(), ftello():
_FILE_OFFSET_BITS == 64 || _POSIX_C_SOURCE >= 200112L
Las funciones fseeko() y ftello() son idénticas a fseek() y ftell() (véase fseek(3)), respectivamente, salvo que el argumento desplto de fseeko() y el valor devuelto por ftello() son de tipo off_t en lugar de long.
On some architectures, both off_t and long are 32-bit types, but defining _FILE_OFFSET_BITS with the value 64 (before including any header files) will turn off_t into a 64-bit type.
On successful completion, fseeko() returns 0, while ftello() returns the current offset. Otherwise, -1 is returned and errno is set to indicate the error.
See the ERRORS in fseek(3).
These functions are available since glibc 2.1.
Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
Interfaz | Atributo | Valor |
fseeko(), ftello() | Seguridad del hilo | Multi-hilo seguro |
POSIX.1-2001, POSIX.1-2008, SUSv2.
The declarations of these functions can also be obtained by defining the obsolete _LARGEFILE_SOURCE feature test macro.
La traducción al español de esta página del manual fue creada por Miguel Pérez Ibars <mpi79470@alu.um.es>
Esta traducción es documentación libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.
Si encuentra algún error en la traducción de esta página del manual, envíe un correo electrónico a debian-l10n-spanish@lists.debian.org.
15 Diciembre 2022 | Páginas de manual de Linux 6.03 |