// integer_methods.h

#ifndef INTEGER_METHODS_H
#define INTEGER_METHODS_H

int int_max(int, int);
int int_min(int, int);

#endif

