Deleted Added
full compact
xzdec.c (256281) xzdec.c (263285)
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file xzdec.c
4/// \brief Simple single-threaded tool to uncompress .xz or .lzma files
5//
6// Author: Lasse Collin
7//
8// This file has been put into the public domain.

--- 48 unchanged lines hidden (view full) ---

57}
58
59
60static void lzma_attribute((__noreturn__))
61help(void)
62{
63 printf(
64"Usage: %s [OPTION]... [FILE]...\n"
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file xzdec.c
4/// \brief Simple single-threaded tool to uncompress .xz or .lzma files
5//
6// Author: Lasse Collin
7//
8// This file has been put into the public domain.

--- 48 unchanged lines hidden (view full) ---

57}
58
59
60static void lzma_attribute((__noreturn__))
61help(void)
62{
63 printf(
64"Usage: %s [OPTION]... [FILE]...\n"
65"Uncompress files in the ." TOOL_FORMAT " format to the standard output.\n"
65"Decompress files in the ." TOOL_FORMAT " format to standard output.\n"
66"\n"
66"\n"
67" -c, --stdout (ignored)\n"
68" -d, --decompress (ignored)\n"
69" -k, --keep (ignored)\n"
67" -d, --decompress (ignored, only decompression is supported)\n"
68" -k, --keep (ignored, files are never deleted)\n"
69" -c, --stdout (ignored, output is always written to standard output)\n"
70" -q, --quiet specify *twice* to suppress errors\n"
70" -q, --quiet specify *twice* to suppress errors\n"
71" -Q, --no-warn (ignored)\n"
71" -Q, --no-warn (ignored, the exit status 2 is never used)\n"
72" -h, --help display this help and exit\n"
73" -V, --version display the version number and exit\n"
74"\n"
75"With no FILE, or when FILE is -, read standard input.\n"
76"\n"
77"Report bugs to <" PACKAGE_BUGREPORT "> (in English or Finnish).\n"
78PACKAGE_NAME " home page: <" PACKAGE_URL ">\n", progname);
79

--- 244 unchanged lines hidden ---
72" -h, --help display this help and exit\n"
73" -V, --version display the version number and exit\n"
74"\n"
75"With no FILE, or when FILE is -, read standard input.\n"
76"\n"
77"Report bugs to <" PACKAGE_BUGREPORT "> (in English or Finnish).\n"
78PACKAGE_NAME " home page: <" PACKAGE_URL ">\n", progname);
79

--- 244 unchanged lines hidden ---