Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
17 lines (13 sloc) 293 Bytes
#include "stdafx.h"
#include <random>
#include <time.h>
// See http://stackoverflow.com/questions/8449234/c-random-number-between-2-numbers-reset
int random(int min, int max)
{
static bool init = false;
if (!init) {
srand(time(NULL));
init = true;
}
return rand()%(max-min)+min;
}