Copy3DEngine/include/C3D/utils.h

12 lines
235 B
C
Raw Normal View History

2024-10-05 00:56:13 +02:00
// Voir README.md pour license précise, par Fcalva 2023-2024 et est sous GPLv3
2024-10-09 16:43:10 +02:00
// See README.md for the exact licensing, by ...
2024-10-05 00:56:13 +02:00
#ifndef utils__h
#define utils__h
#include <stdint.h>
2024-10-08 13:16:05 +02:00
#define min(x, xmin) (x > xmin ? xmin:x)
2024-10-05 00:56:13 +02:00
#endif