This commit is contained in:
2025-07-21 19:40:15 -04:00
parent cb4cc7d658
commit 8aa75cf82c

View File

@@ -30,7 +30,7 @@ int create_project (format_t fmt);
* @param description The option description (right side) * @param description The option description (right side)
*/ */
#define print_option(option, description) \ #define print_option(option, description) \
printf (" %-20s %-20s\n", option, description) printf (" %-20s %-20s\n", option, description)
void void
usage (int status) usage (int status)
@@ -50,8 +50,8 @@ usage (int status)
print_option ("--git", "Initialize git repository"); print_option ("--git", "Initialize git repository");
print_option ("--GNU", print_option ("--GNU",
"Adds stand GNU argument parsing to your project"); "Adds stand GNU argument parsing to your project");
printf (" --help\tdisplay the help text and exit\n"); printf (" --help\tdisplay the help text and exit\n");
printf (" --version\toutput version information and exit\n"); printf (" --version\toutput version information and exit\n");
} }
} }