ReactOS 0.4.15-dev-7958-gcd0bb1a
minmax.h File Reference

Go to the source code of this file.

Macros

#define max(a, b)   (((a) > (b)) ? (a) : (b))
 
#define min(a, b)   (((a) < (b)) ? (a) : (b))
 

Macro Definition Documentation

◆ max

#define max (   a,
  b 
)    (((a) > (b)) ? (a) : (b))

This file has no copyright assigned and is placed in the Public Domain. This file is part of the w64 mingw-runtime package. No warranty is given; refer to the file DISCLAIMER within this package.

Definition at line 12 of file minmax.h.

◆ min

#define min (   a,
  b 
)    (((a) < (b)) ? (a) : (b))

Definition at line 16 of file minmax.h.