mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-13 23:15:09 +01:00
7 lines
131 B
C
7 lines
131 B
C
|
#ifndef TOOLS_H_
|
||
|
#define TOOLS_H_
|
||
|
|
||
|
#define cut_bounds(x, min, max) ( ((x) < (min)) ? (min) : ((x) > (max)) ? (max) : (x) )
|
||
|
|
||
|
#endif
|