Home | History | Annotate | Download | only in apps

Lines Matching refs:argv

90 int MAIN(int argc, char **argv)
110 argv++;
114 if (strcmp(*argv,"-inform") == 0)
117 informat=str2fmt(*(++argv));
119 else if (strcmp(*argv,"-outform") == 0)
122 outformat=str2fmt(*(++argv));
124 else if (strcmp(*argv,"-in") == 0)
127 infile= *(++argv);
129 else if (strcmp(*argv,"-out") == 0)
132 outfile= *(++argv);
134 else if (strcmp(*argv,"-text") == 0)
136 else if (strcmp(*argv,"-cert") == 0)
138 else if (strcmp(*argv,"-noout") == 0)
140 else if (strcmp(*argv,"-context") == 0)
143 context=*++argv;
147 BIO_printf(bio_err,"unknown option %s\n",*argv);
152 argv++;