aboutsummaryrefslogtreecommitdiff
path: root/archival/lzop.c
diff options
context:
space:
mode:
authorPere Orga <gotrunks@gmail.com>2011-03-27 22:40:30 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-03-27 22:40:30 +0200
commit1f4447b2d439e6f11d95746bb5f611c353305859 (patch)
tree0f47681009046a12ee050b989b838c68493a6a2e /archival/lzop.c
parent700fbc308dd1f2e063180786cddfcc4abd6c10c0 (diff)
downloadbusybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.tar.gz
busybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.tar.bz2
busybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.zip
move help text from include/usage.src.h to archival/*.c
Signed-off-by: Pere Orga <gotrunks@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/lzop.c')
-rw-r--r--archival/lzop.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/archival/lzop.c b/archival/lzop.c
index 62455c313..f4419910f 100644
--- a/archival/lzop.c
+++ b/archival/lzop.c
@@ -25,6 +25,33 @@
25 "Minimalized" for busybox by Alain Knaff 25 "Minimalized" for busybox by Alain Knaff
26*/ 26*/
27 27
28//usage:#define lzop_trivial_usage
29//usage: "[-cfvd123456789CF] [FILE]..."
30//usage:#define lzop_full_usage "\n\n"
31//usage: "Options:"
32//usage: "\n -1..9 Compression level"
33//usage: "\n -d Decompress"
34//usage: "\n -c Write to stdout"
35//usage: "\n -f Force"
36//usage: "\n -v Verbose"
37//usage: "\n -F Don't store or verify checksum"
38//usage: "\n -C Also write checksum of compressed block"
39//usage:
40//usage:#define lzopcat_trivial_usage
41//usage: "[-vCF] [FILE]..."
42//usage:#define lzopcat_full_usage "\n\n"
43//usage: " -v Verbose"
44//usage: "\n -F Don't store or verify checksum"
45//usage:
46//usage:#define unlzop_trivial_usage
47//usage: "[-cfvCF] [FILE]..."
48//usage:#define unlzop_full_usage "\n\n"
49//usage: "Options:"
50//usage: "\n -c Write to stdout"
51//usage: "\n -f Force"
52//usage: "\n -v Verbose"
53//usage: "\n -F Don't store or verify checksum"
54
28#include "libbb.h" 55#include "libbb.h"
29#include "archive.h" 56#include "archive.h"
30#include "liblzo_interface.h" 57#include "liblzo_interface.h"