comparison 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
comparison
equal deleted inserted replaced
7:f159eec07daf 8:f7af7255705e
2 2
3 3
4 int random_int(int min, int max) { 4 int random_int(int min, int max) {
5 return rand() % ((max - min) + 1) + min; 5 return rand() % ((max - min) + 1) + min;
6 } 6 }
7