7 lines
122 B
C
7 lines
122 B
C
![]() |
#ifndef min
|
||
|
# define min(a,b) ((a) < (b) ? (a) : (b))
|
||
|
#endif
|
||
|
#ifndef max
|
||
|
# define max(a,b) ((a) > (b) ? (a) : (b))
|
||
|
#endif
|