Lines Matching defs:short_option
338 char *short_option;
344 short_option = malloc(128);
345 if (short_option == NULL) {
359 short_option[k++] = o->val;
361 short_option[k++] = ':';
363 short_option[k] = '\0';
367 if ((c = getopt_long(argc, argv, short_option, long_option,
397 free(short_option);
398 short_option = NULL;
424 free(short_option);