Go to the source code of this file.
Functions | |
| int | min (int one, int second) |
| Minimum. | |
| int | max (int one, int second) |
| Maximum. | |
|
||||||||||||
|
Maximum.
Definition at line 16 of file minmax.h. 00017 {
00018 return one >= second ? one : second;
00019 }
|
|
||||||||||||
|
Minimum.
Definition at line 8 of file minmax.h. 00009 {
00010 return one <= second ? one : second;
00011 }
|
1.4.2