2024-10-05 00:56:13 +02:00
|
|
|
// Voir README.md pour license précise, par Fcalva 2023-2024 et est sous GPLv3
|
|
|
|
|
|
|
|
#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
|