aboutsummaryrefslogtreecommitdiff
path: root/archival/bzip2.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--archival/bzip2.c10
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