File size: 441 Bytes
a4f2c84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
/*
* grandom.h
*
* This file is licensed under the GPLv2 or later
*
* Pseudo-random number generation
*
* Copyright (C) 2012 Fabio D'Urso <fabiodurso@hotmail.it>
* Copyright (C) 2018 Adam Reichold <adam.reichold@t-online.de>
*/
#ifndef GRANDOM_H
#define GRANDOM_H
/// Fills the given buffer with random bytes
void grandom_fill(unsigned char *buff, int size);
/// Returns a random number in [0,1)
double grandom_double();
#endif
|