usage.h (360B)
1 #ifndef USAGE_H 2 #define USAGE_H 3 4 // Parse the global options, returns the remaining argument count 5 // Sets show_version when --version was given, handles --help by itself 6 int dep_global_options(int argc, const char **argv, int *show_version); 7 8 // Print the global usage: options, commands and help topics 9 void dep_print_global_usage(void); 10 11 #endif // USAGE_H