PowerBlocks SDK
 
Loading...
Searching...
No Matches
macro.h File Reference

Various common macros. More...

Go to the source code of this file.

Macros

#define MAX(a, b)
 
#define MIN(a, b)
 

Detailed Description

Various common macros.

Provides macros for common math operations and bitwise.

Author
Samuel Fitzsimons (rainbain)
Date
2025 @license MIT (see LICENSE file)

Macro Definition Documentation

◆ MAX

#define MAX ( a,
b )
Value:
((a) > (b) ? (a) : (b))

◆ MIN

#define MIN ( a,
b )
Value:
((a) < (b) ? (a) : (b))