aboutsummaryrefslogtreecommitdiff
path: root/protbas.c
diff options
context:
space:
mode:
Diffstat (limited to 'protbas.c')
-rw-r--r--protbas.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/protbas.c b/protbas.c
index 5584049..4697fac 100644
--- a/protbas.c
+++ b/protbas.c
@@ -102,14 +102,14 @@ void breakcode(void) {
}
void print_help(void) {
- fprintf(stderr, "Usage: %s [-v] [-nc|-nv] [-s] [-x[r|NN]] <inputfile> <outputfile>\n", self);
- fprintf(stderr, " -v: Verbose.\n");
- fprintf(stderr, " -nc: Don't protect code.\n");
- fprintf(stderr, " -nv: Don't protect variable names.\n");
- fprintf(stderr, " -s: Shrink variable name table to min size.\n");
- fprintf(stderr, "-xNN: Hex code NN for variable names.\n");
- fprintf(stderr, " -xr: Random variable names.\n");
- fprintf(stderr, "Use - as a filename to read from stdin and/or write to stdout.\n");
+ printf("Usage: %s [-v] [-nc|-nv] [-s] [-x[r|NN]] <inputfile> <outputfile>\n", self);
+ printf(" -v: Verbose.\n");
+ printf(" -nc: Don't protect code.\n");
+ printf(" -nv: Don't protect variable names.\n");
+ printf(" -s: Shrink variable name table to min size.\n");
+ printf("-xNN: Hex code NN for variable names.\n");
+ printf(" -xr: Random variable names.\n");
+ printf("Use - as a filename to read from stdin and/or write to stdout.\n");
}
void parse_args(int argc, char **argv) {