diff options
author | Pere Orga <gotrunks@gmail.com> | 2011-03-27 22:40:30 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-03-27 22:40:30 +0200 |
commit | 1f4447b2d439e6f11d95746bb5f611c353305859 (patch) | |
tree | 0f47681009046a12ee050b989b838c68493a6a2e /archival/bzip2.c | |
parent | 700fbc308dd1f2e063180786cddfcc4abd6c10c0 (diff) | |
download | busybox-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/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 ab08ffc1a..cfaf5fe20 100644 --- a/archival/bzip2.c +++ b/archival/bzip2.c | |||
@@ -7,6 +7,16 @@ | |||
7 | * about bzip2 library code. | 7 | * about bzip2 library code. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | //usage:#define bzip2_trivial_usage | ||
11 | //usage: "[OPTIONS] [FILE]..." | ||
12 | //usage:#define bzip2_full_usage "\n\n" | ||
13 | //usage: "Compress FILEs (or stdin) with bzip2 algorithm\n" | ||
14 | //usage: "\nOptions:" | ||
15 | //usage: "\n -1..9 Compression level" | ||
16 | //usage: "\n -d Decompress" | ||
17 | //usage: "\n -c Write to stdout" | ||
18 | //usage: "\n -f Force" | ||
19 | |||
10 | #include "libbb.h" | 20 | #include "libbb.h" |
11 | #include "archive.h" | 21 | #include "archive.h" |
12 | 22 | ||