]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/lz/hc4.c
Fix test_filter_flags to match the new restriction of lc+lp.
[icculus/xz.git] / src / liblzma / lz / hc4.c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       hc4.c
4 /// \brief      Hash Chain 4
5 //
6 //  Copyright (C) 1999-2006 Igor Pavlov
7 //  Copyright (C) 2007 Lasse Collin
8 //
9 //  This library is free software; you can redistribute it and/or
10 //  modify it under the terms of the GNU Lesser General Public
11 //  License as published by the Free Software Foundation; either
12 //  version 2.1 of the License, or (at your option) any later version.
13 //
14 //  This library is distributed in the hope that it will be useful,
15 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 //  Lesser General Public License for more details.
18 //
19 ///////////////////////////////////////////////////////////////////////////////
20
21 #include "hc4.h"
22
23 #undef IS_HASH_CHAIN
24 #undef HASH_ARRAY_2
25 #undef HASH_ARRAY_3
26
27 #define IS_HASH_CHAIN
28 #define HASH_ARRAY_2
29 #define HASH_ARRAY_3
30
31 #include "match_c.h"