diff options
author | Pere Orga | 2011-03-27 22:40:30 +0200 |
---|---|---|
committer | Denys Vlasenko | 2011-03-27 22:40:30 +0200 |
commit | 1f4447b2d439e6f11d95746bb5f611c353305859 (patch) | |
tree | 0f47681009046a12ee050b989b838c68493a6a2e /archival/bzip2.c | |
parent | 700fbc308dd1f2e063180786cddfcc4abd6c10c0 (diff) | |
download | busybox-1f4447b2d439e6f11d95746bb5f611c353305859.zip busybox-1f4447b2d439e6f11d95746bb5f611c353305859.tar.gz |
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/bzip2.c')
-rw-r--r-- | archival/bzip2.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/archival/bzip2.c b/archival/bzip2.c index ab08ffc..cfaf5fe 100644 --- a/archival/bzip2.c +++ b/archival/bzip2.c @@ -7,6 +7,16 @@ * about bzip2 library code. */ +//usage:#define bzip2_trivial_usage +//usage: "[OPTIONS] [FILE]..." +//usage:#define bzip2_full_usage "\n\n" +//usage: "Compress FILEs (or stdin) with bzip2 algorithm\n" +//usage: "\nOptions:" +//usage: "\n -1..9 Compression level" +//usage: "\n -d Decompress" +//usage: "\n -c Write to stdout" +//usage: "\n -f Force" + #include "libbb.h" #include "archive.h" |