Lines Matching refs:argv
24 u_parseArgs(int argc, char* argv[],
31 arg=argv[i];
58 if(i+1<argc && !(argv[i+1][0]=='-' && argv[i+1][1]!=0)) {
59 /* argument in the next argv[], and there is not an option in there */
60 option->value=argv[++i];
87 /* argument following in the same argv[] */
91 } else if(i+1<argc && !(argv[i+1][0]=='-' && argv[i+1][1]!=0)) {
92 /* argument in the next argv[], and there is not an option in there */
93 option->value=argv[++i];
113 /* go to next argv[] */
116 /* move a non-option up in argv[] */
117 argv[remaining++]=arg;