using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UniversalEditor.Compression.Modules.Explode.Internal
{
///
/// Huffman code decoding tables. count[1..MAXBITS] is the number of symbols of each length,
/// which for a canonical code are stepped through in order. symbol[] are the symbol values in
/// canonical order, where the number of entries is the sum of the counts in count[].
///
public struct ExplodeHuffman
{
///
/// Number of symbols of each length
///
public Ptr count;
///
/// Canonically ordered symbols
///
public Ptr symbol;
}
}