Lines Matching refs:argv
27 /*# define U_MAIN_INIT_ARGS(argc, argv) __argvtoascii_a(argc, argv)*/
32 # define U_MAIN_INIT_ARGS(argc, argv) argc = ccommand((char***)&argv)
35 # define U_MAIN_INIT_ARGS(argc, argv)
84 * This function takes the argv[argc] command line and a description of
91 * the same argv[] entry for short options, or it may always follow
92 * in the next argv[] entry.
94 * An argument is in the next argv[] entry for both long and short name
96 * its own argv[] entry if there are characters following the option letter.
97 * An argument in its own argv[] entry must not begin with a '-'
99 * argument format if it is part of the short name options's argv[] entry.
106 * argv[] entry. After an option letter takes an argument, following
116 * All options are removed from the argv[] array itself. If the parser
118 * strings (including argv[0]).
119 * argv[0], the program name, is never read or modified.
122 * remains in the argv[] array.
127 * the parser returns with the negative index of the argv[] entry
130 * The OS/400 compiler requires that argv either be "char* argv[]",
131 * or "const char* const argv[]", and it will not accept,
132 * "const char* argv[]" as a definition for main().
134 * @param argv This parameter is modified
138 u_parseArgs(int argc, char* argv[],