Copy3DEngine/include/C3D/utils.h
2024-10-09 16:43:10 +02:00

11 lines
235 B
C

// Voir README.md pour license précise, par Fcalva 2023-2024 et est sous GPLv3
// See README.md for the exact licensing, by ...
#ifndef utils__h
#define utils__h
#include <stdint.h>
#define min(x, xmin) (x > xmin ? xmin:x)
#endif