#ifndef __CDAT_H__ #define __CDAT_H__ #include #include typedef __uint32_t CDat; typedef __uint64_t CDatd; #define BYTE_COUNT 4 #define BIT_LEN (BYTE_COUNT * 8) static_assert(sizeof(CDat) == BYTE_COUNT, "The size of the datatype for int is NOT 4 bytes (32 Bit!)"); static_assert(sizeof(CDatd) > BYTE_COUNT, "The size of the datatype for double int is NOT bigger than 4 bytes (32 Bit!)"); #endif