Lines Matching refs:argc
37 int argc = 0;
63 if (argc >= MAX_OPT_ARGS)
66 args[argc].from = s;
75 args[argc].to = s + len;
79 simple_strtol(s, &args[argc].to, 0);
82 simple_strtoul(s, &args[argc].to, 0);
85 simple_strtoul(s, &args[argc].to, 8);
88 simple_strtoul(s, &args[argc].to, 16);
90 if (args[argc].to == args[argc].from)
96 s = args[argc].to;
97 argc++;