Commit 0be82334 0be823341497fc06a89d50168a9fc73050128fc6 by Sergey Poznyakoff

(main): Add option -E (encoding). The program

can now be used to test any encoder/decoder filters, so its name
is kind of misnomer.
1 parent f5cfcc6f
......@@ -35,8 +35,9 @@ main (int argc, char * argv [])
size_t size, total = 0;
int mode = MU_FILTER_ENCODE;
char *input = NULL, *output = NULL;
char *encoding = "base64";
while ((c = getopt (argc, argv, "dehi:o:pv")) != EOF)
while ((c = getopt (argc, argv, "deE:hi:o:pv")) != EOF)
switch (c)
{
case 'i':
......@@ -51,6 +52,10 @@ main (int argc, char * argv [])
mode = MU_FILTER_DECODE;
break;
case 'E':
encoding = optarg;
break;
case 'e':
mode = MU_FILTER_ENCODE;
break;
......@@ -64,7 +69,7 @@ main (int argc, char * argv [])
break;
case 'h':
printf ("usage: base64 [-vpde][-i infile][-o outfile]\n");
printf ("usage: base64 [-vpde][-E encoding][-i infile][-o outfile]\n");
exit (0);
default:
......@@ -76,7 +81,7 @@ main (int argc, char * argv [])
else
c = stdio_stream_create (&in, stdin, 0);
assert (c == 0);
assert (filter_create (&flt, in, "base64", mode, MU_STREAM_READ) == 0);
assert (filter_create (&flt, in, encoding, mode, MU_STREAM_READ) == 0);
assert (stream_open (in) == 0);
if (output)
......