PACKAGE Min_Max IS ------------------------------------------------------------------ --| specifications of functions provided by Min_Max package --| Author: Michael B. Feldman, The George Washington University --| Last Modified: July 1995 ------------------------------------------------------------------ FUNCTION Minimum (Value1, Value2: Integer) RETURN Integer; -- Pre: Value1 and Value2 have been assigned values -- Post: Returns the smaller of the two input values FUNCTION Maximum (Value1, Value2: Integer) RETURN Integer; -- Pre: Value1 and Value2 have been assigned values -- Post: Returns the larger of the two input values END Min_Max;