doc
|
#include <time.h>
#include <sys/time.h>
Go to the source code of this file.
Functions | |
double | c_secdiff (struct timespec clock1, struct timespec clock0) |
struct timespec | c_tspecdiff (struct timespec time1, struct timespec time0) |
int | c_utimes (const char *uri, const struct timeval *times) |
double c_secdiff | ( | struct timespec | clock1, |
struct timespec | clock0 ) |
Calculate time difference.
The function returns the time elapsed between time clock1 and time clock0 represented as double (in seconds and milliseconds).
clock1 | The time. |
clock0 | The time. |
struct timespec c_tspecdiff | ( | struct timespec | time1, |
struct timespec | time0 ) |
Calculate time difference.
The c_tspecdiff function returns the time elapsed between time time1 and time time0 represented as timespec.
time1 | The time. |
time0 | The time. |
References c_tspecdiff().
Referenced by c_tspecdiff().
int c_utimes | ( | const char * | uri, |
const struct timeval * | times ) |