breakhack/src/random.c

16 lines
221 B
C
Raw Normal View History

2017-12-17 13:43:41 +01:00
#include <stdlib.h>
#include <time.h>
#include <stdbool.h>
unsigned int
get_random(unsigned int max)
{
static bool seeded = false;
if (!seeded) {
srand(time(NULL));
seeded = true;
}
2017-12-17 13:43:41 +01:00
return rand() % (max + 1);
}