1 /* $Id$ */ |
1 /* $Id$ */ |
2 |
2 |
3 /* @file minilzo.cpp -- mini subset of the LZO real-time data compression library |
3 /** |
4 |
4 * @file minilzo.cpp -- mini subset of the LZO real-time data compression library |
5 This file is part of the LZO real-time data compression library. |
5 * |
6 |
6 * This file is part of the LZO real-time data compression library. |
7 Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer |
7 * |
8 Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer |
8 * Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer |
9 Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer |
9 * Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer |
10 Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer |
10 * Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer |
11 Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer |
11 * Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer |
12 Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer |
12 * Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer |
13 Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer |
13 * Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer |
14 All Rights Reserved. |
14 * Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer |
15 |
15 * All Rights Reserved. |
16 The LZO library is free software; you can redistribute it and/or |
16 * |
17 modify it under the terms of the GNU General Public License as |
17 * The LZO library is free software; you can redistribute it and/or |
18 published by the Free Software Foundation; either version 2 of |
18 * modify it under the terms of the GNU General Public License as |
19 the License, or (at your option) any later version. |
19 * published by the Free Software Foundation; either version 2 of |
20 |
20 * the License, or (at your option) any later version. |
21 The LZO library is distributed in the hope that it will be useful, |
21 * |
22 but WITHOUT ANY WARRANTY; without even the implied warranty of |
22 * The LZO library is distributed in the hope that it will be useful, |
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
24 GNU General Public License for more details. |
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
25 |
25 * GNU General Public License for more details. |
26 You should have received a copy of the GNU General Public License |
26 * |
27 along with the LZO library; see the file COPYING. |
27 * You should have received a copy of the GNU General Public License |
28 If not, write to the Free Software Foundation, Inc., |
28 * along with the LZO library; see the file COPYING. |
29 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
29 * If not, write to the Free Software Foundation, Inc., |
30 |
30 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
31 Markus F.X.J. Oberhumer |
31 * |
32 <markus@oberhumer.com> |
32 * Markus F.X.J. Oberhumer |
33 http://www.oberhumer.com/opensource/lzo/ |
33 * <markus@oberhumer.com> |
34 */ |
34 * http://www.oberhumer.com/opensource/lzo/ |
35 |
35 * |
36 /* |
|
37 * NOTE: |
36 * NOTE: |
38 * the full LZO package can be found at |
37 * the full LZO package can be found at |
39 * http://www.oberhumer.com/opensource/lzo/ |
38 * http://www.oberhumer.com/opensource/lzo/ |
40 */ |
39 */ |
41 |
40 |