Lines Matching defs:short_option
261 char *short_option;
269 short_option = malloc(128);
270 if (short_option == NULL) {
284 short_option[k++] = o->val;
286 short_option[k++] = ':';
288 short_option[k] = '\0';
293 if ((c = getopt_long(argc, argv, short_option, long_option,
398 free(short_option);
399 short_option = NULL;
492 free(short_option);