PowerBlocks SDK
 
Loading...
Searching...
No Matches
macro.h
Go to the documentation of this file.
1
11
12#pragma once
13
14#define MAX(a,b) ((a) > (b) ? (a) : (b))
15#define MIN(a,b) ((a) < (b) ? (a) : (b))