view utils.c @ 7:f159eec07daf

refactor
author Dennis C. M. <dennis@denniscm.com>
date Fri, 23 Jun 2023 10:01:37 +0100
parents 40a8bdbe2005
children f7af7255705e
line wrap: on
line source

#include "utils.h"


int random_int(int min, int max) {
	return rand() % ((max - min) + 1) + min;
}