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

#include "gtypes.h"

/// Fills the given buffer with random bytes
void grandom_fill(Guchar *buff, int size);

/// Returns a random number in [0,1)
double grandom_double();

#endif