You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kopete/protocols/jabber/libiris/cutestuff/util/qrandom.cpp

25 lines
356 B

#include "qrandom.h"
#include <stdlib.h>
uchar QRandom::randomChar()
{
return rand();
}
uint QRandom::randomInt()
{
TQByteArray a = randomArray(sizeof(uint));
uint x;
memcpy(&x, a.data(), a.size());
return x;
}
TQByteArray QRandom::randomArray(uint size)
{
TQByteArray a(size);
for(uint n = 0; n < size; ++n)
a[n] = randomChar();
return a;
}