Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Random.cpp « Common - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c003e8a7afb6a5f61cea224960c5383e33b8539b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Common/Random.cpp

#include "StdAfx.h"

#include <time.h>
#include <stdlib.h>

#include "Common/Random.h"

void CRandom::Init(unsigned int seed)
  { srand(seed); }

void CRandom::Init()
  { Init(time(NULL)); }

int CRandom::Generate() const
  { return rand(); }