C Project Template
utils.h
Go to the documentation of this file.
1 
11 #ifndef UTILS_H
12 #define UTILS_H
13 
14 int chooseMax(int a, int b);
15 int chooseMin(int a, int b);
16 int inBound(int comp, int min, int max);
17 
18 
19 #endif