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/include/option.h

9 lines
151 B

#pragma once
struct opt_desc {
const char *short_name;
const char *long_name;
const char *desc;
};
void format_options(struct opt_desc *entries);