Home | History | Annotate | Download | only in libpopt

Lines Matching defs:help

58  * Auto help table options.
64 { "help", '?', 0, NULL, '?', N_("Show this help message"), NULL },
75 { "help", '?', 0, NULL, '?', N_("Show this help message"), NULL },
212 * Display help text for an option.
226 const char * help = D_(translation_domain, opt->descrip);
267 char * t = malloc((help ? strlen(help) : 0) +
272 if (help) {
273 strcpy(te, help); te += strlen(te);
358 if (help)
368 help = defs;
373 helpLength = strlen(help);
379 ch = help + lineLength - 1;
380 while (ch > help && !isspace(*ch)) ch--;
381 if (ch == help) break; /* give up */
382 while (ch > (help + 1) && isspace(*ch)) ch--;
385 sprintf(format, "%%.%ds\n%%%ds", (int) (ch - help), (int) indentLength);
387 fprintf(fp, format, help, " ");
389 help = ch;
390 while (isspace(*help) && *help) help++;
391 helpLength = strlen(help);
395 if (helpLength) fprintf(fp, "%s\n", help);
466 * Display popt alias and exec help.
493 * Display help text for a table of options.