blob: 98b5096222cfd8c2f750defd0a22744ad35c975b [file] [log] [blame]
#ifndef TIME_UTILS_H
#define TIME_UTILS_H
#include <sys/time.h>
/**
* Function for computing delta of two struct timeval values.
**/
__attribute__((const))
struct timeval
timeval_delta(
struct timeval start,
struct timeval end
);
#endif