1
2
3
4
5
6
7
8
9
// Copyright 2021 Jeisson Hidalgo-Cespedes <jeisson.hidalgo@ucr.ac.cr> CC-BY-4
#include <stdlib.h>
#include "common.h"
useconds_t random_between(useconds_t min, useconds_t max) {
return min + (max > min ? (random() % (max - min)) : 0);
}