Spaces:
Running
Running
/* | |
* grandom.h | |
* | |
* This file is licensed under the GPLv2 or later | |
* | |
* Pseudo-random number generation | |
* | |
* Copyright (C) 2012 Fabio D'Urso <[email protected]> | |
* Copyright (C) 2018 Adam Reichold <[email protected]> | |
*/ | |
/// 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(); | |