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