typedef unsigned int uint32_t; typedef struct { uint32_t HuffmanCode; // contains huffman code bits, used bits are Bit 31 ... 32-HuffmanBits, unused bits are zero. int HuffmanBits; // contains number of used huffman code bits in HuffmanCode } HuffmanCode_t; /* end of huffman_codes.h */