breakhack/src/random.c

11 lines
154 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)
{
srand(time(NULL));
return rand() % (max + 1);
}