view utils.c @ 8:f7af7255705e

text flickering fixed
author Dennis C. M. <dennis@denniscm.com>
date Fri, 23 Jun 2023 16:46:43 +0100
parents f159eec07daf
children
line wrap: on
line source

#include "utils.h"


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