2d29a60e852faf026e2df3049d19cc0d06947589
[oweals/busybox.git] / shell / random.h
1 /* vi: set sw=4 ts=4: */
2 /*
3  * $RANDOM support.
4  *
5  * Copyright (C) 2008 Denys Vlasenko
6  *
7  * Licensed under GPLv2, see file LICENSE in this tarball for details.
8  */
9
10 typedef struct random_t {
11         /* Random number generators */
12         int32_t galois_LFSR; /* Galois LFSR (fast but weak). signed! */
13         uint32_t LCG;        /* LCG (fast but weak) */
14 } random_t;
15
16 #define INIT_RANDOM_T(rnd, nonzero, v) \
17         ((rnd)->galois_LFSR = (nonzero), (rnd)->LCG = (v))
18
19 uint32_t next_random(random_t *rnd) FAST_FUNC;