diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:53:35 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:53:35 +0000 |
commit | c9c61b9b5efd97301c267ea189ee1c3b8440da8f (patch) | |
tree | e6ff3af747cb7906fe694fdf0e0c5b63edf6e000 /lzip.h | |
parent | Adding debian version 1.3-1. (diff) | |
download | plzip-c9c61b9b5efd97301c267ea189ee1c3b8440da8f.tar.xz plzip-c9c61b9b5efd97301c267ea189ee1c3b8440da8f.zip |
Merging upstream version 1.4~pre1.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | lzip.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -69,9 +69,9 @@ const uint8_t magic_string[4] = { 0x4C, 0x5A, 0x49, 0x50 }; // "LZIP" struct File_header { - uint8_t data[6]; // 0-3 magic bytes - // 4 version - // 5 coded_dict_size + uint8_t data[6]; /* 0-3 magic bytes */ + /* 4 version */ + /* 5 coded_dict_size */ enum { size = 6 }; void set_magic() { std::memcpy( data, magic_string, 4 ); data[4] = 1; } @@ -111,9 +111,9 @@ struct File_header struct File_trailer { - uint8_t data[20]; // 0-3 CRC32 of the uncompressed data - // 4-11 size of the uncompressed data - // 12-19 member size including header and trailer + uint8_t data[20]; /* 0-3 CRC32 of the uncompressed data */ + /* 4-11 size of the uncompressed data */ + /* 12-19 member size including header and trailer */ enum { size = 20 }; |