binana/3.3.5a/include/tempest/range.h

19 lines
No EOL
246 B
C

#ifndef TEMPEST_RANGE_H
#define TEMPEST_RANGE_H
#include <stdint.h>
typedef struct CRange CRange;
typedef struct CiRange CiRange;
struct CRange {
float l;
float h;
};
struct CiRange {
int32_t l;
int32_t h;
};
#endif