summaryrefslogtreecommitdiff
path: root/goo/grandom.h
blob: 81532728e7bbc65a34fa0fc88f5cd472a8e59a02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * 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