diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-06 01:53:38 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-06 01:53:38 +0200 |
commit | f0f94700610eba964441ce4a112134e03c76eb89 (patch) | |
tree | 2823e4cd344df7f85f0cd94dc87f1133d05fcc19 /archival | |
parent | 6c5bf0d347faded028e15d523c26a0d64c6d3920 (diff) | |
download | busybox-w32-f0f94700610eba964441ce4a112134e03c76eb89.tar.gz busybox-w32-f0f94700610eba964441ce4a112134e03c76eb89.tar.bz2 busybox-w32-f0f94700610eba964441ce4a112134e03c76eb89.zip |
make it possible to keep usage texts in .c files
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival')
-rw-r--r-- | archival/bbunzip.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/archival/bbunzip.c b/archival/bbunzip.c index ce6223514..b243afb2e 100644 --- a/archival/bbunzip.c +++ b/archival/bbunzip.c | |||
@@ -304,6 +304,17 @@ int gunzip_main(int argc UNUSED_PARAM, char **argv) | |||
304 | * | 304 | * |
305 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 305 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
306 | */ | 306 | */ |
307 | //usage:#define bunzip2_trivial_usage | ||
308 | //usage: "[OPTIONS] [FILE]..." | ||
309 | //usage:#define bunzip2_full_usage "\n\n" | ||
310 | //usage: "Decompress FILEs (or stdin)\n" | ||
311 | //usage: "\nOptions:" | ||
312 | //usage: "\n -c Write to stdout" | ||
313 | //usage: "\n -f Force" | ||
314 | //usage:#define bzcat_trivial_usage | ||
315 | //usage: "FILE" | ||
316 | //usage:#define bzcat_full_usage "\n\n" | ||
317 | //usage: "Decompress to stdout" | ||
307 | //applet:IF_BUNZIP2(APPLET(bunzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP)) | 318 | //applet:IF_BUNZIP2(APPLET(bunzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP)) |
308 | //applet:IF_BUNZIP2(APPLET_ODDNAME(bzcat, bunzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP, bzcat)) | 319 | //applet:IF_BUNZIP2(APPLET_ODDNAME(bzcat, bunzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP, bzcat)) |
309 | #if ENABLE_BUNZIP2 | 320 | #if ENABLE_BUNZIP2 |