difftime(3) | Library Functions Manual | difftime(3) |
NOMBRE
difftime - calcula la diferencia entre dos tiempos
BIBLIOTECA
Biblioteca Estándar C (libc, -lc)
SINOPSIS
#include <time.h>
double difftime(time_t time1, time_t time0);
DESCRIPCIÓN
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 explicación de los términos usados en esta sección, véase attributes(7).
Interfaz | Atributo | Valor |
difftime() | Seguridad del hilo | Multi-hilo seguro |
ESTÁNDARES
C11, POSIX.1-2008.
HISTORIAL
POSIX.1-2001, C89, SVr4, 4.3BSD.
VÉASE TAMBIÉN
date(1), gettimeofday(2), time(2), ctime(3), gmtime(3), localtime(3)
TRADUCCIÓN
La traducción al español de esta página del manual fue creada por Sebastian Desimone <chipy@argenet.com.ar> y Gerardo Aburruzaga García <gerardo.aburruzaga@uca.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.
2 Mayo 2024 | Páginas de Manual de Linux 6.8 |