Home | History | Annotate | Download | only in apps

Lines Matching refs:argv

89 int MAIN(int argc, char **argv)
120 prog=argv[0];
122 argv++;
125 if (strcmp(*argv,"-inform") == 0)
128 informat=str2fmt(*(++argv));
130 else if (strcmp(*argv,"-outform") == 0)
133 outformat=str2fmt(*(++argv));
135 else if (strcmp(*argv,"-in") == 0)
138 infile= *(++argv);
140 else if (strcmp(*argv,"-out") == 0)
143 outfile= *(++argv);
146 else if (strcmp(*argv,"-engine") == 0)
149 engine= *(++argv);
152 else if (strcmp(*argv,"-check") == 0)
154 else if (strcmp(*argv,"-text") == 0)
156 else if (strcmp(*argv,"-C") == 0)
158 else if (strcmp(*argv,"-noout") == 0)
162 BIO_printf(bio_err,"unknown option %s\n",*argv);
167 argv++;