Documentation
¶
Overview ¶
Package lzss is a LZSS compression package for Go.
Index ¶
Constants ¶
View Source
const ( // Magic and CompressionType for LZSS Apple format Magic = "complzss" CompressionType = 0x636f6d70 // "comp" Signature = 0x6c7a7373 // "lzss" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Header ¶ added in v0.1.1
type Header struct {
CompressionType uint32 // 0x636f6d70 "comp"
Signature uint32 // 0x6c7a7373 "lzss"
CheckSum uint32 // Likely CRC32
UncompressedSize uint32
CompressedSize uint32
Version uint32 // Version of the compression algorithm
Padding [padding]byte
}
Header represents the LZSS header
Click to show internal directories.
Click to hide internal directories.