utils.hh
Go to the documentation of this file.
1 
8 #ifndef _UTILS_HH_
9 #define _UTILS_HH_
10 
11 #include <stdio.h>
12 #include <termios.h>
13 #include <unistd.h>
14 #include <fcntl.h>
15 #include <ctype.h>
16 #include <stdlib.h>
17 // Random
18 #include <random>
19 
28 int kbhit();
29 
37 int getRandomInt(int min, int max);
38 
46 double getRandomDouble(double min, double max);
47 
48 #endif
int getRandomInt(int min, int max)
Get a random integer in a given interval.
Definition: utils.cc:45
double getRandomDouble(double min, double max)
Get a random double in a given interval.
Definition: utils.cc:52
int kbhit()
Checks for key press.
Definition: utils.cc:10