Where are MIN and MAX defined in C, if at all?
What is the best way to implement these, as generically and type safely as possible? (Compiler extensions/builtins for mainstream compilers preferred.)
|
|
They aren't.
As functions. I wouldn't use macros like
Everyone says "oh I know about double evaluation, it's no problem" and a few months down the road, you'll be debugging the silliest problems for hours on end. Edit: note the use of
|
|||||||||||||||||||||
|
|
It's also provided in the GNU libc (Linux) and FreeBSD versions of sys/param.h, and has the definition provided by dreamlax. On Debian:
On FreeBSD:
The source repositories are here: |
|||||||||
|
|
There's a
But this causes problems if you write something like |
|||
|
|
|
I don't think that they are standardised macros. There are standardised functions for floating point already, You can implement them as macros as long as you are aware of the issues of side-effects/double-evaluation.
In most cases, you can leave it to the compiler to determine what you're trying to do and optimise it as best it can. While this causes problems when used like |
|||
|
|
|
If you need min/max in order to avoid an expensive branch, you shouldn't use the ternary operator, as it will compile down to a jump. The link below describes a useful method for implementing a min/max function without branching. http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax |
|||
|
|
|
I wrote this version that works for MSVC, GCC, C, and C++.
|
||||
|
|
|
I know the guy said "C"... But if you have the chance, use a C++ template:
Type safe, and no problems with the ++ mentioned in other comments. |
|||
|
|
Looks like Windef.h (a la
) has max and min (lower case) macros, that also suffer from the "double evaluation" difficulty. |
|||||
|
|
Here's some gcc doc about min/max: http://gcc.gnu.org/onlinedocs/gcc-3.4.6/gcc/Min-and-Max.html |
|||||||||||
|