~ubuntu-branches/ubuntu/lucid/lzo2/lucid

« back to all changes in this revision

Viewing changes to minilzo/testmini.c

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2008-04-30 17:40:08 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080430174008-8krqwgroith0zz9o
Tags: 2.03-1
* New upstream release
  - Obsoletes patches to avoid requiring an executable stack
* Updated standards version
* Added Homepage control field
* Updated copyright; license is now GPLv2+
* Changed to debhelper level 6

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
   This file is part of the LZO real-time data compression library.
4
4
 
 
5
   Copyright (C) 2008 Markus Franz Xaver Johannes Oberhumer
 
6
   Copyright (C) 2007 Markus Franz Xaver Johannes Oberhumer
 
7
   Copyright (C) 2006 Markus Franz Xaver Johannes Oberhumer
5
8
   Copyright (C) 2005 Markus Franz Xaver Johannes Oberhumer
6
9
   Copyright (C) 2004 Markus Franz Xaver Johannes Oberhumer
7
10
   Copyright (C) 2003 Markus Franz Xaver Johannes Oberhumer
15
18
   All Rights Reserved.
16
19
 
17
20
   The LZO library is free software; you can redistribute it and/or
18
 
   modify it under the terms of the GNU General Public License,
19
 
   version 2, as published by the Free Software Foundation.
 
21
   modify it under the terms of the GNU General Public License as
 
22
   published by the Free Software Foundation; either version 2 of
 
23
   the License, or (at your option) any later version.
20
24
 
21
25
   The LZO library is distributed in the hope that it will be useful,
22
26
   but WITHOUT ANY WARRANTY; without even the implied warranty of
97
101
        return 0;
98
102
 
99
103
    printf("\nLZO real-time data compression library (v%s, %s).\n",
100
 
            lzo_version_string(), lzo_version_date());
101
 
    printf("Copyright (C) 1996-2005 Markus Franz Xaver Johannes Oberhumer\nAll Rights Reserved.\n\n");
 
104
           lzo_version_string(), lzo_version_date());
 
105
    printf("Copyright (C) 1996-2008 Markus Franz Xaver Johannes Oberhumer\nAll Rights Reserved.\n\n");
102
106
 
103
107
 
104
108
/*
142
146
/*
143
147
 * Step 4: decompress again, now going from `out' to `in'
144
148
 */
 
149
    new_len = in_len;
145
150
    r = lzo1x_decompress(out,out_len,in,&new_len,NULL);
146
151
    if (r == LZO_E_OK && new_len == in_len)
147
152
        printf("decompressed %lu bytes back into %lu bytes\n",
158
163
}
159
164
 
160
165
/*
161
 
vi:ts=4
 
166
vi:ts=4:et
162
167
*/
163
168