// Voir README.md pour license précise, par Fcalva 2023-2024 et est sous GPLv3 // See README.md for the exact licensing, by ... #pragma once #include #include #include "fixed.h" #define min(x, xmin) (x > xmin ? xmin:x) typedef struct { int16_t x0,x1; int16_t y0,y1; } Rect; int cmpfunc (const void * a, const void * b);