11 lines
174 B
C
11 lines
174 B
C
#include <inttypes.h>
|
|
|
|
#define ARRAY_LEN(x) (sizeof(x)/sizeof(x[0]))
|
|
|
|
typedef double f64;
|
|
typedef float f32;
|
|
|
|
typedef uint8_t u8;
|
|
typedef uint32_t u32;
|
|
typedef uint64_t u64;
|