Lines Matching refs:applet_opts
325 #define vgetopt32(argv,applet_opts,applet_long_options,p) \ argument
326 vgetopt32(argv,applet_opts,p)
332 vgetopt32(char **argv, const char *applet_opts, const char *applet_long_options, va_list p) argument
358 len = strlen(applet_opts);
362 if (applet_opts[0] == '^') {
363 applet_opts++;
365 opt_complementary = applet_opts + len;
369 dont_die_flag = applet_opts[0];
371 applet_opts++;
373 applet_opts = strcpy(alloca(len + 1), applet_opts);
376 s = (const unsigned char *)applet_opts;
537 while ((c = getopt_long(argc, argv, applet_opts,
540 while ((c = getopt(argc, argv, applet_opts)) != -1) {
599 getopt32(char **argv, const char *applet_opts, ...) argument
604 va_start(p, applet_opts);
605 opt = vgetopt32(argv, applet_opts, NULL, p);
612 getopt32long(char **argv, const char *applet_opts, const char *longopts, ...) argument
618 opt = vgetopt32(argv, applet_opts, longopts, p);