~ubuntu-branches/ubuntu/intrepid/gengetopt/intrepid

« back to all changes in this revision

Viewing changes to tests/test_conf_parser_cmd.h.test

  • Committer: Bazaar Package Importer
  • Author(s): Bart Martens
  • Date: 2008-05-07 21:14:14 UTC
  • mfrom: (1.1.6 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080507211414-p2vy66i37h9csmxi
Tags: 2.22.1-1
* New upstream release.
* debian/copyright: Updated.
* debian/patches/02info.diff: Updated.
* debian/patches/03gcc43.diff: Removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
  const char *conf_file_help; /**< @brief config file help description.  */
83
83
  char ** multi_string_arg;     /**< @brief multiple string option.  */
84
84
  char ** multi_string_orig;    /**< @brief multiple string option original value given at command line.  */
85
 
  int multi_string_min; /**< @brief multiple string option's minimum occurreces */
86
 
  int multi_string_max; /**< @brief multiple string option's maximum occurreces */
 
85
  unsigned int multi_string_min; /**< @brief multiple string option's minimum occurreces */
 
86
  unsigned int multi_string_max; /**< @brief multiple string option's maximum occurreces */
87
87
  const char *multi_string_help; /**< @brief multiple string option help description.  */
88
88
  char ** multi_string_def_arg; /**< @brief multiple string option with default (default='this default').  */
89
89
  char ** multi_string_def_orig;        /**< @brief multiple string option with default original value given at command line.  */
90
 
  int multi_string_def_min; /**< @brief multiple string option with default's minimum occurreces */
91
 
  int multi_string_def_max; /**< @brief multiple string option with default's maximum occurreces */
 
90
  unsigned int multi_string_def_min; /**< @brief multiple string option with default's minimum occurreces */
 
91
  unsigned int multi_string_def_max; /**< @brief multiple string option with default's maximum occurreces */
92
92
  const char *multi_string_def_help; /**< @brief multiple string option with default help description.  */
93
 
  int noarg_min; /**< @brief multiple option with no arg's minimum occurreces */
94
 
  int noarg_max; /**< @brief multiple option with no arg's maximum occurreces */
 
93
  unsigned int noarg_min; /**< @brief multiple option with no arg's minimum occurreces */
 
94
  unsigned int noarg_max; /**< @brief multiple option with no arg's maximum occurreces */
95
95
  const char *noarg_help; /**< @brief multiple option with no arg help description.  */
96
 
  int noarg_noshort_min; /**< @brief multiple option with no arg and no short's minimum occurreces */
97
 
  int noarg_noshort_max; /**< @brief multiple option with no arg and no short's maximum occurreces */
 
96
  unsigned int noarg_noshort_min; /**< @brief multiple option with no arg and no short's minimum occurreces */
 
97
  unsigned int noarg_noshort_max; /**< @brief multiple option with no arg and no short's maximum occurreces */
98
98
  const char *noarg_noshort_help; /**< @brief multiple option with no arg and no short help description.  */
99
99
  char * opt_arg_arg;   /**< @brief option with optional arg.  */
100
100
  char * opt_arg_orig;  /**< @brief option with optional arg original value given at command line.  */