Is a macro that returns the smaller of two integers.
#include <stdlib.h>
int min (
int a,
int b);
(IN) Specifies the first integer.
(IN) Specifies the second integer.
Returns the smaller of the two integers.