Files
easy7zip/Common/Random.cpp
Igor Pavlov af1fe52701 4.25 beta
2016-05-28 00:15:43 +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(); }