diff options
-rw-r--r-- | unprotbas.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unprotbas.c b/unprotbas.c index 28af9a5..7ee5d03 100644 --- a/unprotbas.c +++ b/unprotbas.c @@ -604,7 +604,7 @@ void scramble_vars(void) { } void print_help(void) { - fprintf(stderr, "Usage: %s [-v] [-f] [-n] [-g] [-c] [-r|-w] <inputfile> <outputfile>\n", self); + fprintf(stderr, "Usage: %s [-v] [[-f] [-n] [-g] [-c] [-r|-w] | [-p|-pc|-pv] ] <inputfile> <outputfile>\n", self); fprintf(stderr, "-v: verbose\n"); fprintf(stderr, "-f: force variable name table rebuild\n"); fprintf(stderr, "-n: do not rebuild variable name table, even if it's invalid\n"); @@ -612,6 +612,7 @@ void print_help(void) { fprintf(stderr, "-c: check only; no output file\n"); fprintf(stderr, "-w: write variable names to varnames.txt\n"); fprintf(stderr, "-r: read variable names from varnames.txt\n"); + fprintf(stderr, "-pc/-pv/-p: protect code/variables/both\n"); fprintf(stderr, "Use - as a filename to read from stdin and/or write to stdout\n"); } |