     .OUTPI ALFRES
     .ENTRY "ALL"

;This file describes the format of an archive header.

;Each entry begins with a one byte archive marker
;byte, which is currently 26. The next byte ranges
;from 0-9 or 15, and is compression type code. The
;codes are:
;0 - End of archive, no more data
;1 - Old format, same as 2
;2 - Stored, no compression
;3 - Packed
;4 - Squeezed with Huffman algorithm
;5 through 8 are all variations of Lempel-Ziv
;15 - AlfCrunch which is LZ with adaptive reset

HDRVER *=*+1    CURRENTLY 26
CMPTYP *=*+1    COMPRESSION TYPE
NAME   *=*+13   FILENAME\0
SIZE   *=*+4    COMPRESSED SIZE
DATE   *=*+2    CREATION DATE, PACKED
TIME   *=*+2    CREATION TIME, PACKED
CRC    *=*+2    CRC/CHECKSUM VALUE
LENGTH *=*+4    TRUE FILE LENGTH
