constchar*match;/* String to match, e.g. "input" here will match "--input" on CLI */
/* Struct members below are optional and can be omitted in option definition. If omitted, C will implicitly set them to 0. */
constchar*matchShort;/* Short version of the string to match, e.g. "i" here will match "-i" on CLI */
constchar*placeholder;/* If not NULL, this will follow the match string in the usage printout, e.g. "<file>" here will print "--input <file>" on CLI */
constchar*description;/* Description of the option for the usage printout. May contain '\n' for line breaks. */