#ifndef TIMESTAMP_H
#define TIMESTAMP_H

#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <assert.h>

#include <time.h>
#include <sys/time.h>

typedef struct timespec timespec_t;

timespec_t timestamp_now();
int32_t get_dt(timespec_t t1, timespec_t t0);

#endif
