Copy3DEngine/include/C3D/utils.h
2024-10-27 23:52:11 +01:00

18 lines
354 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 ...
#pragma once
#include <stdint.h>
#include <stdbool.h>
#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);