5 lines
94 B
C
5 lines
94 B
C
|
#pragma once
|
||
|
|
||
|
#define min(x, y) ((x < y) ? (x) : (y))
|
||
|
#define max(x, y) ((x > y) ? (x) : (y))
|