Files
easy7zip/CPP/Common/Random.cpp
Igor Pavlov d9666cf046 4.44 beta
2016-05-28 00:15:49 +01:00

18 lines
279 B
C++
Executable File

// 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((unsigned int)time(NULL)); }
int CRandom::Generate() const
{ return rand(); }