2007-06-28 21:14:38 +05:30
|
|
|
/*
|
|
|
|
* @file _usage.h
|
|
|
|
* @brief standardize help/usage output across all our programs
|
|
|
|
* @internal
|
|
|
|
*
|
|
|
|
* Copyright 2007 Gentoo Foundation
|
|
|
|
* Released under the GPLv2
|
|
|
|
*/
|
|
|
|
|
2007-09-19 21:57:37 +05:30
|
|
|
#define getoptstring_COMMON "Chq"
|
2007-09-25 21:51:38 +05:30
|
|
|
|
2007-06-28 21:14:38 +05:30
|
|
|
#define longopts_COMMON \
|
|
|
|
{ "help", 0, NULL, 'h'}, \
|
2007-09-19 21:57:37 +05:30
|
|
|
{ "nocolor", 0, NULL, 'C'}, \
|
2007-09-25 21:51:38 +05:30
|
|
|
{ "quiet", 0, NULL, 'q'},
|
|
|
|
|
|
|
|
#define longopts_help_COMMON \
|
|
|
|
"Display this help output (duh)", \
|
|
|
|
"Disable color output", \
|
|
|
|
"Run quietly"
|
2007-06-28 21:14:38 +05:30
|
|
|
|
|
|
|
#define case_RC_COMMON_GETOPT \
|
|
|
|
case 'C': setenv ("RC_NOCOLOR", "yes", 1); break; \
|
|
|
|
case 'h': usage (EXIT_SUCCESS); \
|
2007-09-19 21:57:37 +05:30
|
|
|
case 'q': setenv ("RC_QUIET", "yes", 1); break; \
|
2007-06-28 21:14:38 +05:30
|
|
|
default: usage (EXIT_FAILURE);
|