Lines Matching defs:argc
70 int getopt_1char(int argc,
82 if (optind < argc) {
115 int getopt(int argc,
125 if ((argc > optind) && (argv != 0)) {
129 result = getopt_1char(argc, argv, opstring, arg[1]);
156 int getopt_1long(const int argc,
204 if ((optind + 1) >= argc) {
212 if ((argc - optind) > 0) {
240 * specified by the argv and argc arguments. Options may be either short
243 int getopt_long(int argc,
253 if ((argc > optind) && (argv != 0)) {
259 result = getopt_1long(argc,
265 result = getopt_1char(argc,
277 * specified by the argv and argc arguments. Options may be either short
281 int getopt_long_only(int argc,
291 if ((argc > optind) && (argv != 0)) {
297 result = getopt_1long(argc,
303 result = getopt_1long(argc,
309 result = getopt_1char(argc,