1
0
harvensine-compute/src/harvensine_compute.h
2023-07-12 18:54:41 +03:00

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;