Revision db08adf5 qemu-option.c

b/qemu-option.c
347 347
        list++;
348 348
    }
349 349
}
350

  
351
/*
352
 * Prints an overview of all available options
353
 */
354
void print_option_help(QEMUOptionParameter *list)
355
{
356
    printf("Supported options:\n");
357
    while (list && list->name) {
358
        printf("%-16s %s\n", list->name,
359
            list->help ? list->help : "No description available");
360
        list++;
361
    }
362
}

Also available in: Unified diff