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

« back to all changes in this revision

Viewing changes to examples/overlap.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
145
149
    in = xmalloc(in_len);
146
150
    out = xmalloc(in_len + in_len / 16 + 64 + 3);
147
151
    wrkmem = xmalloc(LZO1X_1_MEM_COMPRESS);
148
 
    in_len = lzo_fread(f,in,in_len);
 
152
    in_len = (lzo_uint) lzo_fread(f,in,in_len);
149
153
    fclose(f); f = NULL;
150
154
    printf("%s: %s: read %ld bytes\n", progname, in_name, (long) in_len);
151
155
 
152
156
    total_files++;
153
 
    total_in += in_len;
 
157
    total_in += (unsigned long) in_len;
154
158
 
155
159
/*
156
160
 * Step 3: compress from `in' to `out' with LZO1X-1
288
292
 
289
293
    printf("\nLZO real-time data compression library (v%s, %s).\n",
290
294
           lzo_version_string(), lzo_version_date());
291
 
    printf("Copyright (C) 1996-2005 Markus Franz Xaver Johannes Oberhumer\nAll Rights Reserved.\n\n");
 
295
    printf("Copyright (C) 1996-2008 Markus Franz Xaver Johannes Oberhumer\nAll Rights Reserved.\n\n");
292
296
 
293
297
    progname = argv[0];
294
298
    if (i < argc && argv[i][0] == '-')