C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
__max, __min
 Summary Example                         Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
     The __max and __min macros compare two values and return the value
     of the larger one (__max) or the value of the smaller one (__min).
     The data type can be any numerical data type, signed or unsigned.
     The type of the arguments and the return value is the same.
 
     Return Value
 
     The macro returns the larger (__max) or smaller (__min) of the two
     arguments.
                                    -♦-