File: lzma_version.h

package info (click to toggle)
lzma 9.22-2.1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,636 kB
  • ctags: 7,948
  • sloc: cpp: 32,791; ansic: 13,738; cs: 3,846; java: 3,077; makefile: 781; asm: 449; sh: 74
file content (31 lines) | stat: -rw-r--r-- 973 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef LZMA_VERSION_H
#define LZMA_VERSION_H

/*
    Version and copyright information used by LZMA utils.
*/

static const char *LZMA_SDK_VERSION_STRING = "9.22";

static const char *LZMA_SDK_COPYRIGHT_STRING =
		"Copyright (C) 1999-2011 Igor Pavlov";

static const char *LZMA_SDK_COPYRIGHT_INFO =
		"  See http://7-zip.org/sdk.html or the documentation of LZMA SDK for\n"
		"  the license. For reference, the version 9.22 is free software\n"
		"  licensed placed under the public domain.";


static const char *LZMA_UTILS_VERSION_STRING = PACKAGE_VERSION;

static const char *LZMA_UTILS_COPYRIGHT_STRING =
		"Copyright (C) 2006 Lasse Collin";

static const char *LZMA_UTILS_COPYRIGHT_INFO =
		"This program comes with ABSOLUTELY NO WARRANTY.\n"
		"You may redistribute copies of this program\n"
		"under the terms of the GNU General Public License.\n"
		"For more information about these matters, see the file "
		"named COPYING.\n";

#endif /* ifndef LZMA_VERSION_H */