mirror of
https://git.planet-casio.com/Fcalva/Copy3DEngine.git
synced 2024-12-28 20:43:44 +01:00
10 lines
186 B
C
10 lines
186 B
C
// Voir README.md pour license précise, par Fcalva 2023-2024 et est sous GPLv3
|
|
|
|
#ifndef utils__h
|
|
#define utils__h
|
|
|
|
#include <stdint.h>
|
|
|
|
#define min(x, xmin) (x > xmin ? xmin:x)
|
|
|
|
#endif
|