]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/common/stream_flags_common.c
Sort of garbage collection commit. :-| Many things are still
[icculus/xz.git] / src / liblzma / common / stream_flags_common.c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       stream_flags_common.c
4 /// \brief      Common stuff for Stream flags coders
5 //
6 //  Copyright (C) 2007-2008 Lasse Collin
7 //
8 //  This library is free software; you can redistribute it and/or
9 //  modify it under the terms of the GNU Lesser General Public
10 //  License as published by the Free Software Foundation; either
11 //  version 2.1 of the License, or (at your option) any later version.
12 //
13 //  This library is distributed in the hope that it will be useful,
14 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 //  Lesser General Public License for more details.
17 //
18 ///////////////////////////////////////////////////////////////////////////////
19
20 #include "stream_flags_common.h"
21
22
23 const uint8_t lzma_header_magic[6] = { 0xFF, 0x4C, 0x5A, 0x4D, 0x41, 0x00 };
24 const uint8_t lzma_footer_magic[2] = { 0x59, 0x5A };
25
26
27 extern LZMA_API lzma_bool
28 lzma_stream_flags_equal(const lzma_stream_flags *a, const lzma_stream_flags *b)
29 {
30         if (a->check != b->check)
31                 return false;
32
33         // Backward Sizes are compared only if they are known in both.
34         if (a->backward_size != LZMA_VLI_VALUE_UNKNOWN
35                         && b->backward_size != LZMA_VLI_VALUE_UNKNOWN
36                         && a->backward_size != b->backward_size)
37                 return false;
38
39         return true;
40 }