difftime(3) Library Functions Manual difftime(3) NOMBRE difftime - calcula la diferencia entre dos tiempos BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include double difftime(time_t time1, time_t time0); DESCRIPCION The difftime() function returns the number of seconds elapsed between time time1 and time time0, represented as a double. Each time is a count of seconds. difftime(b, a) acts like (b-a) except that the result does not overflow and is rounded to double. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |difftime() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES C11, POSIX.1-2008. HISTORIAL POSIX.1-2001, C89, SVr4, 4.3BSD. VEASE TAMBIEN date(1), gettimeofday(2), time(2), ctime(3), gmtime(3), localtime(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Sebastian Desimone y Gerardo Aburruzaga Garcia 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 11 Noviembre 2023 difftime(3)