1 /* This is the aligned version of the compression table.  An unaligned copy is stored in
2    each compressed segment. */
3 
4 dcl 1 table aligned,
5           2 uid bit(70),                /* a unique table identifier, set by make_compression_table */
6           2 max_bits fixed bin,         /* maximum number of bits in a character code for this table */
7           2 bits (0:127) bit(20),       /* bit code for each ASCII character, index by unspec value */
8           2 bit_lengths (0:127) fixed bin(5); /* length of code for each character, in bits */