APM:Libraries
min_max.h
Go to the documentation of this file.
1 #pragma once
2 
3 #define MIN_(a, b) (a) < (b) ? (a) : (b)
4 #define MAX_(a, b) (a) > (b) ? (a) : (b)