aboutsummaryrefslogtreecommitdiff
path: root/src/timer.c
blob: 2187fb2acd408b83fbed7126c3fa59c618de86b5 (plain)
1
2
3
4
5
6
7
8
#include <time.h>

#include "timer.h"

double elapsed_time(clock_t s_time, clock_t e_time)
{
	return ((double) (e_time - s_time))/((double) CLOCKS_PER_SEC);
}