poCker
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1#ifndef UTILS_H
2#define UTILS_H
3
4#include <stdbool.h>
5
12#define MAX(a,b) (a > b ? a : b)
14#define MIN(a,b) (a < b ? a : b)
15
16int mathClamp(int, int, int);
17int randRange(int, int);
18int mathMax(int, ...);
19int mathMin(int, ...);
20
21#endif //UTILS_H
int mathMin(int,...)
Returns the smallest integer provided in arguments.
Definition utils.c:75
int mathMax(int,...)
Returns the greatest integer provided in arguments.
Definition utils.c:47
int mathClamp(int, int, int)
Clamps a value to be constrained in a range.
Definition utils.c:17
int randRange(int, int)
Randomizes an integer from a given inclusive range.
Definition utils.c:34