nmsg 1.1.2
random.h
Go to the documentation of this file.
1#ifndef NMSG_RANDOM_H
2
7nmsg_random_t
8nmsg_random_init(void);
9
10void
11nmsg_random_destroy(nmsg_random_t *);
12
13void
14nmsg_random_buf(nmsg_random_t, uint8_t *, size_t);
15
16uint32_t
17nmsg_random_uint32(nmsg_random_t);
18
19uint32_t
20nmsg_random_uniform(nmsg_random_t, uint32_t upper_bound);
21
22#endif /* NMSG_RANDOM_H */