ToolBox Library 2.1.0
An Library containing function and class to make developing in C faster
random.h
1#ifndef TOOLBOX_RANDOM_H
2#define TOOLBOX_RANDOM_H
3
4#include <stdint.h>
5
6char
7rand_print_char(void);
8
9int8_t
10rand_int8(int8_t min, int8_t max);
11
12int16_t
13rand_int16(int16_t min, int16_t max);
14
15int32_t
16rand_int32(int32_t min, int32_t max);
17
18int64_t
19rand_int64(int64_t min, int64_t max);
20
21#endif