mirror of
https://git.planet-casio.com/Fcalva/Copy3DEngine.git
synced 2024-12-28 20:43:44 +01:00
18 lines
354 B
C
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);
|