30 void timespec_add(
const struct timespec *a,
const struct timespec *b,
struct timespec *res);
47 void timespec_sub(
const struct timespec *a,
const struct timespec *b,
struct timespec *res);
void timespec_sub(const struct timespec *a, const struct timespec *b, struct timespec *res)
Soustraire une structure timespec d'une autre.
Definition: utimes.c:42
long timespec_to_micros(const struct timespec *t)
Convertir un timespec en une valeur en microsecondes.
Definition: utimes.c:24
void timespec_add(const struct timespec *a, const struct timespec *b, struct timespec *res)
Ajouter deux structures timespec.
Definition: utimes.c:29