Home | History | Annotate | Download | only in toolutil

Lines Matching full:argv

29 /*#   define U_MAIN_INIT_ARGS(argc, argv) __argvtoascii_a(argc, argv)*/
34 # define U_MAIN_INIT_ARGS(argc, argv) argc = ccommand((char***)&argv)
37 # define U_MAIN_INIT_ARGS(argc, argv)
86 * This function takes the argv[argc] command line and a description of
93 * the same argv[] entry for short options, or it may always follow
94 * in the next argv[] entry.
96 * An argument is in the next argv[] entry for both long and short name
98 * its own argv[] entry if there are characters following the option letter.
99 * An argument in its own argv[] entry must not begin with a '-'
101 * argument format if it is part of the short name options's argv[] entry.
108 * argv[] entry. After an option letter takes an argument, following
118 * All options are removed from the argv[] array itself. If the parser
120 * strings (including argv[0]).
121 * argv[0], the program name, is never read or modified.
124 * remains in the argv[] array.
129 * the parser returns with the negative index of the argv[] entry
132 * The OS/400 compiler requires that argv either be "char* argv[]",
133 * or "const char* const argv[]", and it will not accept,
134 * "const char* argv[]" as a definition for main().
136 * @param argv This parameter is modified
140 u_parseArgs(int argc, char* argv[],