1 // integer_methods.h
2
3 #ifndef INTEGER_METHODS_H
4 #define INTEGER_METHODS_H
5
6 int int_max(int, int);
7 int int_min(int, int);
8
9 #endif
10