#include <commons/temporal.h>
Más...
Ir al código fuente de este archivo.
◆ t_temporal_status
Estado del cronómetro
Valores de enumeraciones |
---|
TEMPORAL_STATUS_STOPPED | Cronómetro detenido.
|
TEMPORAL_STATUS_RUNNING | Cronómetro en marcha.
|
◆ temporal_get_string_time()
char* temporal_get_string_time |
( |
const char * |
format | ) |
|
Retorna un string con la hora actual con el formato recibido por parámetro.
- Devuelve
- El string retornado debe ser liberado con
free()
al dejar de usarse.
char * temporal_get_string_time(const char *format)
Retorna un string con la hora actual con el formato recibido por parámetro.
◆ temporal_create()
Crea una variable temporal e inicia su cronómetro.
- Devuelve
- La variable temporal creada debe ser liberada con
temporal_destroy()
.
◆ temporal_destroy()
Destruye una variable temporal.
- Parámetros
-
temporal | Variable temporal a destruir. |
◆ temporal_gettime()
Retorna el tiempo total transcurrido mientras el cronómetro estuvo activo en milisegundos.
- Parámetros
-
temporal | Variable temporal. |
◆ temporal_stop()
Detiene el cronómetro de una variable temporal.
- Parámetros
-
temporal | Variable temporal a frenar. |
◆ temporal_resume()
Reanuda el cronómetro de una variable temporal.
- Parámetros
-
temporal | Variable temporal a reanudar. |
◆ temporal_diff()
Retorna la diferencia del tiempo total transcurrido entre dos variables temporales en milisegundos.
- Parámetros
-
temporal_1 | Primera variable temporal. |
temporal_2 | Segunda variable temporal. |