5 lines
90 B
C
5 lines
90 B
C
#pragma once
|
|
|
|
#define min(a, b) ( (a < b) ? a : b )
|
|
#define max(a, b) ( (a > b) ? a : b )
|