Home | History | Annotate | Download | only in apps

Lines Matching refs:argv

86 int MAIN(int argc, char **argv)
111 prog=argv[0];
113 argv++;
116 if (strcmp(*argv,"-inform") == 0)
119 informat=str2fmt(*(++argv));
121 else if (strcmp(*argv,"-outform") == 0)
124 outformat=str2fmt(*(++argv));
126 else if (strcmp(*argv,"-in") == 0)
129 infile= *(++argv);
131 else if (strcmp(*argv,"-nocrl") == 0)
135 else if (strcmp(*argv,"-out") == 0)
138 outfile= *(++argv);
140 else if (strcmp(*argv,"-certfile") == 0)
144 sk_OPENSSL_STRING_push(certflst,*(++argv));
148 BIO_printf(bio_err,"unknown option %s\n",*argv);
153 argv++;