fseeko(3) Library Functions Manual fseeko(3) NOMBRE fseeko, ftello - modifica o informa de la posicion del fichero BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include int fseeko(FILE *flujo, off_t desplto, int origen); off_t ftello(FILE *flujo); Requisitos de Macros de Prueba de Caracteristicas para glibc (vease feature_test_macros(7)): fseeko(), ftello(): _FILE_OFFSET_BITS == 64 || _POSIX_C_SOURCE >= 200112L DESCRIPCION Las funciones fseeko() y ftello() son identicas a fseek() y ftell() (vease 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. VALOR DEVUELTO On successful completion, fseeko() returns 0, while ftello() returns the current offset. Otherwise, -1 is returned and errno is set to indicate the error. ERRORES See the ERRORS in fseek(3). ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |fseeko(), ftello() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES POSIX.1-2008. HISTORIAL glibc 2.1. POSIX.1-2001, SUSv2. NOTAS The declarations of these functions can also be obtained by defining the obsolete _LARGEFILE_SOURCE feature test macro. VEASE TAMBIEN fseek(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Miguel Perez Ibars Esta traduccion es documentacion libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD. Si encuentra algun error en la traduccion de esta pagina del manual, envie un correo electronico a . Paginas de manual de Linux 6.06 31 Octubre 2023 fseeko(3)