diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/unarchive.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/unarchive.h b/include/unarchive.h index aa7ecec55..8009de282 100644 --- a/include/unarchive.h +++ b/include/unarchive.h | |||
@@ -4,6 +4,22 @@ | |||
4 | 4 | ||
5 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN | 5 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
6 | 6 | ||
7 | enum { | ||
8 | #if BB_BIG_ENDIAN | ||
9 | COMPRESS_MAGIC = 0x1f9d, | ||
10 | GZIP_MAGIC = 0x1f8b, | ||
11 | BZIP2_MAGIC = ('B'<<8) + 'Z', | ||
12 | XZ_MAGIC1 = (0xfd<<8) + '7', | ||
13 | XZ_MAGIC2 = ((((('z'<<8) + 'X')<<8) + 'Z')<<8) + 0, | ||
14 | #else | ||
15 | COMPRESS_MAGIC = 0x9d1f, | ||
16 | GZIP_MAGIC = 0x8b1f, | ||
17 | BZIP2_MAGIC = ('Z'<<8) + 'B', | ||
18 | XZ_MAGIC1 = ('7'<<8) + 0xfd, | ||
19 | XZ_MAGIC2 = (((((0<<8) + 'Z')<<8) + 'X')<<8) + 'z', | ||
20 | #endif | ||
21 | }; | ||
22 | |||
7 | typedef struct file_header_t { | 23 | typedef struct file_header_t { |
8 | char *name; | 24 | char *name; |
9 | char *link_target; | 25 | char *link_target; |