jbig2dec
Ralph Giles <[email protected]> Thu, 15 Aug 2002 06:52:30 -0700
| Newsgroups | gmane.comp.printing.ghostscript.jbig2dec.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/jbig2dec/jbig2dec
In directory usw-pr-cvs1:/tmp/cvs-serv5353
Modified Files:
jbig2dec.c
Log Message:
checkpoint commit: do-nothing -t option for setting output file type.
Index: jbig2dec.c
===================================================================
RCS file: /cvsroot/jbig2dec/jbig2dec/jbig2dec.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- jbig2dec.c 5 Aug 2002 22:56:51 -0000 1.39
+++ jbig2dec.c 15 Aug 2002 13:52:28 -0000 1.40
@@ -100,6 +100,7 @@
{"dump", 0, NULL, 'd'},
{"hash", 0, NULL, 'm'},
{"output", 1, NULL, 'o'},
+ {"format", 1, NULL, 't'},
{NULL, 0, NULL, 0}
};
int option_idx = 1;
@@ -107,7 +108,7 @@
while (1) {
option = getopt_long(argc, argv,
- "Vh?qvdo:", long_options, &option_idx);
+ "Vh?qvdo:t:", long_options, &option_idx);
if (option == -1) break;
//fprintf(stderr, "option '%c' value '%s'\n", option, optarg);
@@ -143,6 +144,8 @@
case 'o':
params->output_file = strdup(optarg);
break;
+ case 't':
+ break;
default:
if (!params->verbose) fprintf(stdout,
"unrecognized option: -%c\n", option);