You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
tbm-utils/source/option.c

15 lines
293 B

#include <stdio.h>
#include <option.h>
void format_options(struct opt_desc *entries)
{
struct opt_desc *entry;
for (entry = entries; entry->long_name; ++entry) {
fprintf(stderr, "%7s %-16s %s\n",
entry->short_name ? entry->short_name : "",
entry->long_name,
entry->desc);
}
}