Lines Matching refs:argc
28 int argc = 0;
54 if (argc >= MAX_OPT_ARGS)
57 args[argc].from = s;
66 args[argc].to = s + len;
70 simple_strtol(s, &args[argc].to, 0);
73 simple_strtoul(s, &args[argc].to, 0);
76 simple_strtoul(s, &args[argc].to, 8);
79 simple_strtoul(s, &args[argc].to, 16);
81 if (args[argc].to == args[argc].from)
87 s = args[argc].to;
88 argc++;